$(document).ready(function() {
	$(".home_container").hover(function(e){
			$(this).addClass("hover");
	}, function(e){
		$(this).removeClass("hover");
	});
	$(".pmovie_container").hover(function(e){
			$(this).addClass("hover");
	}, function(e){
		$(this).removeClass("hover");
	});    
	$(".pmovie_container.pmovie_cinemateca p").click(function(e){
		window.location.href = $(this).parent().find("a.link_action").attr("href");
	});
	$(".home_container p").click(function(e) {
		window.location.href = $(this).parent().find("h2 a").attr("href");

	});
	
	$(".menuList li").hover(function(e) {
		$(this).find(".submenu").show();
	}, 
	function(e) {
		$(this).find(".submenu").hide();
	});
	$("a.fancybox").fancybox();
});
