$(document).ready(function() {
	$("a[href^=http]").each(
	   function(){
		  if(this.href.indexOf(location.hostname) == -1) { 
	      $(this).attr('target', '_blank');
	    }
	});
	$("a[href*=pdf]").each(
	   function(){
	      $(this).attr('target', '_blank');
	});
	$("#myController").jFlow({
			slides: "#mySlides",
			controller: ".jFlowControl",
			easing: "swing",
			duration: 400,
			height: "100px",
			width: "795px",
			prev: ".jFlowPrev",
			next: ".jFlowNext"
		});
	$('#jfp').click(function(){
		$('#jfn').removeClass("h");
		$(this).addClass("h");
	});
	$('#jfn').click(function(){
		$('#jfp').removeClass("h");
		$(this).addClass("h");
	});
	
	swfobject.embedSWF("core/swf/intro.swf", "flash", "385", "275", "7.0.19.0");
});


