$(document).ready(function() {
	$(".image_thumb:first").addClass('active');
	$(".image_thumb").click(function(){
		var imgAlt = $(this).find('img').attr("alt");
		var imgTitle = $(this).find('a').attr("href");
		
		if($(this).is(".active")){
		return false;
		} else {
		$(".main_image img").attr({src:imgTitle , alt:imgAlt});
		}
		$(".image_thumb").removeClass('active');
		$(this).addClass('active');
		return false;
	})
});