$(document).ready(function() {


	/*light_rounded / dark_rounded / light_square / dark_square / facebook */
	$("a[rel^='prettyPhoto']").prettyPhoto({theme: 'light_square'});
	

	$("#menuwrapper .list").hover(
		function () {
			if($(this).find("ul").length > 0){
				$(this).find("ul").show();
			}
		},
		function(){
			if($(this).find("ul").length > 0){
				$(this).find("ul").hide();
			}

	});


});
