 $(document).ready(function() {

					$('.rollover').css("opacity", .7);
	
					$('.post-current').hover( 
						
						function() {
					
							$('#post-over').fadeIn('fast');
							return false;
						}
										
					);
					
					$('#post-over').hover(function(){},
						
						function() {
						
							$(this).fadeOut('fast');
							return false;				
						}
										
					);
					
					$('a#show-movie').click(function() {
												
						$('#home-video').fadeIn('fast');
						$('#video-container').height('380px');
						return false;
					
					});
					
					$('a#close-video').click(function() {
												
						$('#home-video').fadeOut('fast');
						$('#home-video').css("display", "none");
						$('#video-container').height('291px');
						return false;
						
					});
					
					$('.rollover').hover(function(){$(this).animate({opacity: 1},300);return false;},function(){$(this).animate({opacity: .7},100);return false;});
						
					
	
			});