	//Replace fix the single quote
	$(document).ready(function(){
		$('div').each(function(){
		     if($(this).children().length < 1) 
		          $(this).html( 
 		              $(this).text().replace(
		                    /’/g
		                    ,"'" 
	               )  
	           ) 
		});

		$('span').each(function(){
		     if($(this).children().length < 1) 
		          $(this).html( 
 		              $(this).text().replace(
		                    /’/g
		                    ,"'" 
	               )  
	           ) 
		});

		$('li').each(function(){
		     if($(this).children().length < 1) 
		          $(this).html( 
 		              $(this).text().replace(
		                    /’/g
		                    ,"'" 
	               )  
	           ) 
		});
	});

       //Set location
        var o = document.getElementById("location");
	 var locName = "";
        if (loc == "nky") locName = "Northern Kentuky";
        if (loc == "lou") locName = "Louisville";
        if (loc == "lex") locName = "Lexington";
        if (loc == "sw") locName = "Evansville";
        if (loc == "bg") locName = "Bowling Green";
        if (o != null) {
            o.innerHTML = o.innerHTML.replace('$loc$', locName);
            o.innerHTML = o.innerHTML.replace('$landing$', window.location.pathname);
        }
        //Hide location if location is blank
        if (loc == "") {
            if (document.getElementById) { // DOM3 = IE5, NS6 
                document.getElementById("location").style.visibility = 'hidden';
            }
            else {
                if (document.layers) { // Netscape 4 
                    document.loc.visibility = 'hidden';
                }
                else { // IE 4 
                    document.all.loc.style.visibility = 'hidden';
                }
            }
        } 

        

