//////////////////////////////////////
$(document).ready(function() {
	$("a[id^='pro']").hover(showHandImg).click(switchid);
});
function switchid(){	
	$("a[id^='pro']").removeClass("on");
	$(this).addClass("on");
	$("div[id^='divpro']").hide();
	$("div[id='div"+this.id+"']").show();
}
function showHandImg(){
	$(this).css("cursor", "pointer");
}
