																
$(document).ready(function(){
	$("#primary_menu li").hover(
		function () {
        $(this).find('ul').addClass('show');
		$(this).find('a').addClass('active');
      	}, 
      	function () {
        	$(this).find('ul').removeClass('show');
      		$(this).find('a').removeClass('active');
		}	
	);
	});

$(document).ready(function(){
	$('.view_more a').click(
		function(){ 
		$('.opened').removeClass('opened').animate( { height:"290px"}, 1000 );
		$(this).parents("div.group_box").addClass('opened');
		$(this).parents("div.group_box").animate( { height:"530px"}, 1000 );
		$(this).parents("li.show").removeClass('show').next().addClass('show');
		});
	$('.view_less a').click(
		function(){ 
		$('.opened').removeClass('opened');
		$(this).parents("div.group_box").animate( { height:"290px"}, 1000 );
		$(this).parents("li.view_less").removeClass('show').prev().addClass('show');
		});
 });


//	<!--Adds Second Level Class to Primary Menu for IE 6-->
$(document).ready(function(){
             $("#primary_menu ul").find('ul').addClass('second_level');  									
 			$("#secondary_menu ul").find('ul').addClass('second_level');
 });

//																				
//	$(document).ready(function(){																				
//		$(".News_item").hover(
//		function () {
//			$('.News_item').addClass('dim');
//			$(this).addClass('light');
//			$(this).removeClass('dim');
//      	}, 
//      	function () {
//			$('.News_item').removeClass('dim');
//			$('.News_item').removeClass('light');	
//      	}
//	);
//		
//	}); 


