// JavaScript Document
$(document).ready(function() {
	/*$(".thumb_div_new").dropShadow({left: 2, top: 2, blur: 1, color: "#555"});*/
	$(".thumb_div_new").hover(
		  function () {
			$(this).stop().animate({opacity: 0.6}, 300);
		  },
		  function () {
			$(this).stop().animate({opacity: 1}, 300);
		  }
	);
});
