$(document).ready(function() {	
 
	//Show Banner

	$(".news_main .newsdescription_place").animate({ opacity: 0.75 }, 1 ); //Set Opacity

	//Click and Hover events for thumbnail list
	$(".news_thumb ul li:first").addClass('active'); 
	$(".news_thumb ul li").click(function(){ 
	
		//Set Variables
	
		var imgDesc = $(this).find('.news_descript').html(); 	//Get HTML of block
		var imgHeight = $(".image_main").find('.news_descript').height();	//Calculate height of block	
	
		
		if ($(this).is(".active")) {  //If it's already active, then...
			return false; // Don't click through
		} else {
			//Animate the Teaser	
		$(".news_main .newsdescription_place").animate({opacity: 0, marginBottom: -imgHeight-10},500,function(){
						
				       $(".news_main .newsdescription_place").html(imgDesc).html(imgDesc).animate({ opacity: 0.75,	marginBottom: "0" },200 );
            });
				
			
		}
		
		$(".news_thumb ul li").removeClass('active'); //Remove class of 'active' on all lists
		$(this).addClass('active');  //add class of 'active' on this list only
		return false;
		
	}) .hover(function(){
		$(this).addClass('hover');
		}, function() {
		$(this).removeClass('hover');
	});
			
	//Toggle Teaser

	
});//Close Function