// JavaScript Document
jQuery(function($) { 
	var loc = location.href;
	$("#left").load("leftlink.html");
	$("#topmenu").load("about-us-link.html");
	

	
	$("#footer").load("footer.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");
    });
	
	}); 