jQuery(document).ready(function($) {
	
	$("#gp_pretty_gallery_container a.tab_to").click(function (){
		$("#gp_pretty_gallery_container .box.withfooter ul.gallery.clearfix").removeClass('make_it_show');
		$("#gp_pretty_gallery_container .tab_to").removeClass('active');
		$(this).addClass('active');
		if(this.id){
			$(".box.withfooter ul.gallery.clearfix."+this.id).addClass('make_it_show');
		}else{
			alert('shouldnt be seeing this');
			$("#gp_pretty_gallery_container .box.withfooter ul.gallery.clearfix.first").addClass('make_it_show');
		}
	});
});
