$(function() {
	var containerState = 'off';
	$('a[name=50779]').parent().prepend($('#floatingContainer'));
	$('#floatingContainer').append( $('#FordBox') );
	$('#floatingContainer').append( $('#LincolnBox') );
	$('#floatingContainer').append( $('#ChevyBox'));
	$('#floatingContainer').append( $('#ChevySpeedwayBox'));
	$('#floatingContainer').append( $('#NissanBox') );
	$('#floatingContainer').append( $('#ToyotaBox') );
	$('#floatingContainer').append( $('#ScionBox') );
	$('#floatingContainer').append( $('#MitsubishiBox') );
	$('#floatingContainer').append( $('#BuickGMCBox'));

	// Make Button for Make Navigation on Home Page
	$('.makeButton a').data('state','off');
	$('.makeButton a').click(function() {
		var boxName = $(this).attr('name');
		if ($(this).data('state')=='off') {
			if (containerState == 'off') {
				containerState='on';
				$('#floatingContainer').fadeToggle('slow');
			}
			$('#floatingContainer .makeBox').hide();
			$('#floatingContainer #'+boxName+'Box').fadeToggle('medium');
			$('.makeButton a').data('state','off');
			$('.makeButton a').removeClass('On');
			$(this).data('state','on');
			$(this).addClass('On');
		} else {
			$(this).data('state','off');
			$(this).removeClass('On');
			containerState='off';
			$('#floatingContainer').fadeToggle('slow');
			$('#floatingContainer .makeBox').hide();
		}
	});
	$('#closeBoxButton').click(function(){
		containerState='off';
		$('.makeButton a').data('state','off');
		$('.makeButton a').removeClass('On');
		$('#floatingContainer').fadeToggle('slow');
		$('#floatingContainer .makeBox').hide();
    });
});
