/* Author:

*/
$('#ngg-gallery-1-4').cycle({
		fx: 'fade',
		width:614,
		height:480,
		fit:true,
		speed: 4000,
		continuous: 1,
		 	before: function() {
			var $slide = $(this).attr('rel');
		    $('#main .home-film-list a[rel='+ $slide +']').addClass('current');
		     },
		      after: function() {
		var $slide = $(this).attr('rel');
		$('#main .home-film-list a[rel='+ $slide +']').removeClass('current'); 
		     }	
	});	

$('#menu-films').hover(
	function() {
	$(this).children('.sub-menu').fadeIn(1000);
		},
	function(){
	$(this).children('.sub-menu').fadeOut(1000);
	});

$('.press h4, .awards h4').click(	function() {
	  $(this).siblings('p').toggle('slow');
	});



