$(function(){
	$(".imgDemo a").bind("click", function(){
		$(this).parent().parent().find("a").removeClass("on");
		$(this).addClass("on");
		$(this).parent().parent().parent().parent().parent().parent().prev().find("img").attr("src", $(this).children().attr("bigImgSrc"));
		$(this).parent().parent().parent().parent().parent().parent().prev().find("img").attr("alt", $(this).children().attr("bigAlt"));
		$(this).parent().parent().parent().parent().parent().parent().prev().find("img").attr("title", $(this).children().attr("bigAlt"));
		return false;								   
	});	   
})

