$(document).ready(function() {	// get the last element in all topnav dropdown elements	// apply new style for background image	$('#topnav li ul li:last-child').addClass('last');		// search input label effects	$('#s').val('Search');	$('#s').focus(function() {		$(this).val('');	});	$('#s').blur(function() {		if($('#s').val()=='') {			$('#s').val('Search');		} else {			//do nothing		}	});		// contact form dropdown						   	/*	$(".contact-trigger").click( function() {		if ($(".contact-form .bottom span").is(":hidden")) {			$(".contact-form").animate({ 				height: "0"				}, 200 );			$(".contact-trigger").removeClass("contact-trigger-on");			$(".contact-form .bottom span").show();		} else {			$(".contact-form").animate({ 				height: "538px"				}, 200 );			$(".contact-trigger").addClass("contact-trigger-on");			$(".contact-form .bottom span").hide();		}	});	*/		 $('body').click(function() {		if ($(".contact-form .bottom span").is(":hidden")) {			$(".contact-form").animate({ 				height: "0"				}, 200 );			$(".contact-trigger").removeClass("contact-trigger-on");			$(".contact-form .bottom span").show();		}	 });		 $('.contact').click(function(event){		 event.stopPropagation();	 });	});blowup = function() {	alert($(this).attr('src'));	}
