$(document).ready(function(){	
	$(".drop_down").click(function(){
		var dropDown = $(this).attr('href');
		if ($('#drop_down_navigations').children('div:visible').length > 0){
			var tempDrop = $('#drop_down_navigations').children('div:visible').attr('id');
			var currentDrop = '#'+(tempDrop);
			if (dropDown == currentDrop){
				$(currentDrop).slideUp(700,'easeOutQuad');
				return false;
			};
			$('#drop_down_navigations').children('div:visible').slideUp(700,'easeOutQuad');
			$(dropDown).delay(700).slideDown(700,'easeOutQuad');
		} else {$(dropDown).slideDown(700,'easeOutQuad');};
		return false;
	});
	
	$(".slide_up").click(function(){
		var dropDown = $(this).attr('href');
		if ($('#slide_up_navigations').children('div:visible').length > 0){
			var tempDrop = $('#slide_up_navigations').children('div:visible').attr('id');
			var currentDrop = '#'+(tempDrop);
			if (dropDown == currentDrop){
				$(currentDrop).slideUp(700,'easeOutQuad');
				return false;
			};
			$('#slide_up_navigations').children('div:visible').slideUp(700,'easeOutQuad');
			$(dropDown).delay(700).slideDown(700,'easeOutQuad');
			$('html, body').animate({ scrollTop: 60000 }, 'slow');
		} else {
			$(dropDown).slideDown(700,'easeOutQuad');
			$('html, body').animate({ scrollTop: 60000 }, 'slow');
		};
		return false;
	});
	
	$('.show_more_images').toggle(
		function(){
			$('.hidden_images').slideDown();
			$(this).text('Hide Images');
			return false;	
		},
		function(){	
			$('.hidden_images').slideUp();
			$(this).text('View More Images');
			return false;
		}
	);
	
	$('#brand_banner_images').cycle({
		pager:  '.brand_banner_navigation',
		fx: 'fade',
		timeout: 4000,
		speed: 2000,
		pause: true,
		pauseOnPagerHover: true
	});
	$('.inventory').hover(
		function(){$(this).addClass('inventory_over')},
		function(){$(this).removeClass('inventory_over')}
	);
	$("#features_nav a").click(function(){
		var dropDown = $(this).attr('href');
		if ($('#model_dropdowns').children('div:visible').length > 0){
			var tempDrop = $('#model_dropdowns').children('div:visible').attr('id');
			var currentDrop = '#'+(tempDrop);
			if (dropDown == currentDrop){
				$(currentDrop).slideUp(700,'easeOutQuad');
				$('#features_nav a').removeClass('active');
				return false;
			};
			$('#model_dropdowns').children('div:visible').slideUp(700,'easeOutQuad');
			$('#features_nav a').removeClass('active');
			$(this).addClass('active');
			$(dropDown).delay(700).slideDown(700,'easeOutQuad');
		} else {
			$(dropDown).slideDown(700,'easeOutQuad');
			$(this).addClass('active');
		};
		return false;
	});				
	$(".colorbox_photo").colorbox({
		maxWidth: "95%", 
		maxHeight: "95%", 
		photoScaling: "true", 
		opacity: .75});
	$(".colorbox").colorbox({
		opacity: .75
	});
	$(".colorbox_iframe").colorbox({width:"940px", height:"750px", iframe:true});
});
