// JavaScript Document
$(document).ready(function(){

		$(".proImg").each(function() {
		   $(this).hover(
			  function () {
			   $(this).children("span").animate({height: "70px"},{queue:false,duration:200});
			
				  }, 
			  function () {
			  $(this).children("span").animate({height: "15px"},{queue:false,duration:200});
			
			 
			  }
			);
		});  

	$(".proImg").each(function() {
	  $(this).children("span").click(
			function()
			{
				hi=$(this).next().attr('href');
				window.open(hi);
			});
	});    
  
});

