$(document).ready(function(){

			$(function() {


			$("#container_holder>.img_holder").hoverIntent(
			function(){
			$(this).find('a').animate({borderWidth: "4px"}, 0 );
			$(this).find('img').animate({margin: "-3px"}, 0 );
			$(this).siblings().fadeTo("fast", 0.3); // Fade other items to 30%
			$(this).fadeTo("fast", 1.0); // Fade current to 100%
			
			},
			function(){       
			$(this).find('a').animate({borderWidth: "1px"}, 0);
			$(this).find('img').animate({margin: "0px"},0 );
			$(this).removeClass("current"); // Remove class .current
			$(this).fadeTo(1, 1.0); // This should set the other's opacity back to 100% on mouseout   
			$('#container_holder>.img_holder').fadeTo("fast", 1.0); 
			});
			});

	
	
});


function printPage() {
  if (window.print)
    window.print()
  else
    alert("Sorry, your browser doesn't support this feature.");
}


