
$(function(){
	///////////////////////////////////////////// <a target="_blank">
	$("a[rel='external']").click(function(){
		window.open($(this).attr("href"));
		return false;
	});
	
	///////////////////////////////////////////// Tab Menu
	$("#flowtabs").tabs("#flowpanes > div", {effect:'fade', initialIndex:null}).history();
	//$("#flowtabs").tabs("#flowpanes > div", {tabs:this, effect:'slide', initialIndex:null}).history();
	
	///////////////////////////////////////////// Accordion Column
	$(".accordion").tabs(".accordion div.pane", {tabs:'.tabTitle', effect:'slide', initialIndex:null});
	
	///////////////////////////////////////////// PhotoGallery
  $('.pagePg .phList a').lightBox();
	$(".pagePg .phList li:nth-child(4n)").css("margin-right", "0");
});

