

// JavaScript Document
$(document).ready(function(){

   $("#popup").hide();


$(".newslink").click(function(){
   $("#popup").hide();
	});

$("div.newscontainer").hover(


	  function(){
		$(this).find("div.newstext").css("background-color","#eee");
		

	  },
	  function(){
		$(this).find("div.newstext").css("background-color","white");
	  }
);




	$(".thumbs a").click(function(){
	
		var largePath = $(this).attr("href");
		var largeAlt = $(this).attr("title");
		
		$("#largeImg").attr({ src: largePath, alt: largeAlt });
		
		$("h2 em").html(" (" + largeAlt + ")"); return false;
	});
           
    $(".thumb").css({'opacity':'0.6'});
 
	$('.thumb').hover(
		function() {
			$(this).stop().fadeTo(200, 1);
		},
		function() {
			$(this).stop().fadeTo(400, 0.6);
		}
	)

 
});		







