 
 
 
// open link in new tab -----------------------------------------------------------------------------------------------------------

 $(function() {
	$('a[href^=http]').click( function() {
		window.open(this.href);
		return false;
	});
});


// image fade on hover ------------------------------------------------------------------------------------------------------------

$(document).ready(function(){
$(".car-block img").fadeTo("slow", 1.0); // This sets the opacity of the thumbs to fade down to 60% when the page loads
$(".car-block img").hover(function(){
$(this).fadeTo("fast", .6); // This should set the opacity to 100% on hover
},function(){
$(this).fadeTo("fast", 1); // This should set the opacity back to 60% on mouseout
});
});
 
 
// car slide down -----------------------------------------------------------------------------------------------------------------
 

$(document).ready(function(){
	$(".btn-slide").click(function(){
		$("#panel").slideToggle("slow");
		$(this).toggleClass("active"); return false;
	});
});


// gallery show hide -----------------------------------------------------------------------------------------------------------------

