$(document).ready(function(){
	$("#play_trailer_button").hover(function(){
		$("#play_trailer_over").stop(true,true).fadeIn('fast');
	},function(){
		$("#play_trailer_over").stop(true,true).fadeOut('fast');
	});
	
	var oldSource;
	var newSource;
	$('img[rel]').hover(function(){
		oldSource = $(this).attr('src');
		newSource = $(this).attr('rel');
		$(this).attr('src',newSource);
	},function(){
		$(this).attr('src',oldSource);
	});
	if(self.scrollHeight){
		$('div.lights').css('height', self.scrollHeight);
	}else if(document.documentElement && document.documentElement.scrollHeight){
		$('div.lights').css('height', document.documentElement.scrollHeight);
	}else if(document.body){
		$('div.lights').css('height', document.body.scrollHeight);
	}
	
	/*if(document.documentElement.scrollHeight){
		$('div.lights').css('height', document.documentElement.scrollHeight);
	} else if()*/

	$('#filmsSelect').click(function(){
		$('.menu-site-switcher-container').stop(true,true).fadeIn('fast');
	});
	function closeAll(){
        $('.menu-site-switcher-container').stop(true,true).fadeOut();
        return false;
    };
    $('.menu-site-switcher-container').mouseleave(closeAll);

    $(".nav li").hover(
      function () {
        $('ul',this).stop(true,true).fadeIn();
      }, 
      function () {
        $('ul',this).stop(true,true).fadeOut();        
      }
    );
});
