$(document).ready(function() { 

	$(".photobar").click(function () {
		target_tab = $(this).attr("rel");
		
		style2_tab_go(target_tab);
	
	});
	
	$(".photobar").mouseover(function () {
		$(this).children(".photobar_photo").children(".photobar_over").show();
	
	});
	
	$(".photobar").mouseout(function () {
		$(this).children(".photobar_photo").children(".photobar_over").hide();
	
	});


});
