$(function(){

    $(".portal-box").click(function(){
     window.location=$(this).find("a").attr("href");
     return false;
});


 $(".rounded-img").load(function() {
    $(this).wrap(function(){
      return '<span class="' + $(this).attr('class') + '" style="background:url(' + $(this).attr('src') + ') no-repeat center center; width: ' + $(this).width() + 'px; height: ' + $(this).height() + 'px;" />';
    });
    $(this).css("opacity","0");
  });
  
  

	 $("#largeimage").click(function () { 
   
    });
    
    $(".rounded-img-gall").click(function() {
    
    	largei = $("#largeimage").attr("src");
    	var srcimg = '#'+this.id;
    	smalli = $(srcimg).attr("src");

	 	smalli = smalli.replace("thumb", "large_"); // value = 9:61

  		  $(srcimg).attr("src", largei);
    	$("#largeimage").attr("src", smalli);
     });
   
   
   
   
    
    $("#img2,#img3,#img4,#img5,#img6,#img7 ").hover(function(){
    
         $(this).animate({ opacity: "1" }, "fast");

    
    }, function(){
    
    
         $(this).animate({ opacity: "0.6" }, "fast");
        

    
    });


    

});
