(function ($) {
	Drupal.behaviors.lists = {
		attach: function (context, settings) {
			//start
			$('#watch-reel a').click(function(event) {
				event.preventDefault();
				if ($("#front-latest-showreel iframe").is(":hidden")) {
					$('#front-latest-showreel iframe').slideDown('slow');
				} else {
					//$('#watch-reel a').css({'color' : '#c6c07a', 'cursor' : 'default' });
					$('#front-latest-showreel iframe').slideUp('slow');
				}
			});
			//end
		}
	};
}(jQuery));
;

