$(document).ready(function(){
	$("a[rel^='prettyPhoto']").prettyPhoto();
	
		// SuckerFish Style Dropdown Menus, in jQuery
		// Code by Myles Angell, http://be.twixt.us/jquery/suckerFish.php
	$("#main-nav li").hover(
		function(){ $("ul", this).fadeIn("slow"); }, 
		function() { } 
	);
	
	if (document.all) {
		$("#main-nav li").hoverClass ("sfHover");
	}

});

$.fn.hoverClass = function(c) {
	return this.each(function(){
		$(this).hover( 
			function() { $(this).addClass(c);  },
			function() { $(this).removeClass(c); }
		);
	});
};