// JavaScript Document
var liveURL = "https://www5.myfranconnect.com/flcouncil/";
var localURL = "";
var loginURL = liveURL + "control/authenticate/";

jQuery(function($) { 
	var loc = location.href;
	$("#top-menu").load(localURL + "topLink.html");
	$("#footer").load(localURL + "footer.html");
// for content height	
	if(loc.indexOf('blogs') > -1)
	{
		if ($('#box1').height() > 500)
		$("#content").height($('#box1').height()+26);
		else
		$("#content").height(500);
	}
	else 
		$("#content").height($('#box1').height()+130);
//dropshadow for boxes
	 $("#box1").dropShadow({left: 1, top: 1, opacity: 0.8, blur: 1});
	   $("#box2").dropShadow({left: 1, top: 1, opacity: 0.8, blur: 1});
	   $("#box3").dropShadow({left: 1, top: 1, opacity: 0.8, blur: 1});
	   $("#box4").dropShadow({left: 1, top: 1, opacity: 0.8, blur: 1});
	  
	var loc = location.href;
	// for About Us sub menu
	if((loc.indexOf('about-franchise-leadership-council.html') > -1) || (loc.indexOf('mission.html') > -1) || (loc.indexOf('history.html') > -1) || (loc.indexOf('vision.html') > -1) || (loc.indexOf('fact-sheet.html') > -1) || (loc.indexOf('team.html') > -1) || (loc.indexOf('staff.html') > -1) || (loc.indexOf('multimedia.html') > -1)){
		 $("#left").load("about-link.html");
	}
	
	
	
 $.fn.textDropShadow = function(){
	 $(this).html('<span class="jq-shadow">'+$(this).html()+'</span><span>'+$(this).html()+'</span>');
	 return $(this);
 }

	$('A[rel="external"]').click( function() {
        window.open( $(this).attr('href') );
        return false;
    });
	$('A[rel="int"]').click( function() {
       $("div#flash").show("slow");
    });
	
	}); 
