/* Rotating social photos
 * November 2011
 *
 * Version: 1.02
 *
 */
 
$(document).ready(function(){
	$("#thumbs a").mouseover(function(){
	
		var heroPath = $(this).attr("href");
		var heroAlt = $(this).attr("title");
		
		$("#heroImage").attr({ src: heroPath, alt: heroAlt });
	});
	
	$(".thumb").click(function(evt){
		return false; //don't follow the image link
	});	
});
