

$(document).ready(function () {	

	$('#menu li').hover(
		function () {
			//show its submenu
			$('ul', this).slideDown();
			$('ul li ul', this).slideUp(0);

		},
		function () {
			//hide its submenu
			$('ul', this).slideUp();
		}
	);

});






/* 
Reviewer JS by Jake Caputo / DesignCrumbs.com

<![CDATA[  */
var J = jQuery.noConflict();
J(document).ready(function() {
	
// Index poster hovers
	J(document).ready(function() {
		J('.poster_info_wrap,.pos').hover(function() {
			J(this).children('.description,.description1').stop().fadeTo(300, .9);
		}, function() {
			J(this).children('.description,.description1').stop().fadeTo(300, 0);
		});
	});
});






/* ]]> */

/* 
Reviewer JS by Jake Caputo / DesignCrumbs.com

<![CDATA[  */


