jQuery(document).ready(function(){
											
  jQuery("#slide-controller").jFlow({
	slides: "#slides",
	controller: ".jFlowControl", // must be class, use . sign
	slideWrapper: "#jFlowSlide", // must be id, use # sign
	selectedWrapper: "jFlowSelected",  // just pure text, no sign
	width: "505px",
	height: "146px",
	duration: 200,
	easing: "swing",
	prev: ".jFlowPrev", // must be class, use . sign
	next: ".jFlowNext" // must be class, use . sign
	
		
  });
  
  jQuery("#createpresence-tabs").tabs();
	
	
	var theahrefs = document.getElementsByTagName('a');	   
	  //fix dotted line thing when link is OnClicked
	for(var x=0;x!=theahrefs.length;x++){
	  theahrefs[x].onfocus = function stopLinkFocus(){this.hideFocus=true;};
	}	
});

