$(document).ready(function(){

//carousel gallery
$("a[rel^='prettyPhoto']").prettyPhoto({
flash_markup: '<div id="pp_vid_container"><object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" width="{width}" height="{height}"><param name="wmode" value="{wmode}" /><param name="allowfullscreen" value="true" /><param name="allowscriptaccess" value="always" /><param name="movie" value="{path}" /><embed src="{path}" type="application/x-shockwave-flash" allowfullscreen="true" allowscriptaccess="always" width="{width}" height="{height}" wmode="{wmode}"></embed></object></div>'
});

// dropdown
	$("#menu li").hover(
	  function () {
		$("ul",this).css("display", "block");
	  },
	  function () {
		$("ul",this).css("display", "none");
	  }
	);

});

$(window).load(function(){



});
