// JavaScript Document


$(document).ready(function(){
						   
						   
			$(".twitter_contest img").hover(function(){
													 
					$(".twitter_contest").animate({height: "961"}, 500);										 
													 
													 
													 
				},function(){
					
					$(".twitter_contest").animate({height: "260"}, 500);
					
				});
						   
			});
