$(document).ready(function() {
	
	$('#watchme_posters li img').fadeTo(1000, .7);
		
	$('#watchme_posters li img').hover(
			function() {
				$(this).fadeTo(100,1.0);
			},
			function() {
				$(this).fadeTo(100,.7);
			}
		);
		
	$('.topLevel').hover(
				function() {
					$(this).children('.subNav:hidden').fadeIn(200); 
					$(this).children('a:first').addClass('navHover');
				},
				function() {
					$(this).children('.subNav:visible').fadeOut(500); 
					$(this).children('a:first').removeClass('navHover');
				}
			);
			
			
	$('.watchme_expand').hide();
	
	$('.watchme_expand_link').toggle(
		function() {
			$('.watchme_expand').slideDown();
			return false;
		},
		function() {
			$('.watchme_expand').slideUp();
			return false;
		}
		
	);
	
});