$(function(){
	var baseURL = "";
	var currentURL = window.location;
	
	//Body Load
	
	$("#breadcrumb").each(function(){
        var charReplace = $(this).html();
        charReplace = charReplace.replace("&gt;","&nbsp;|&nbsp;");
        charReplace = charReplace.replace("&gt;","&nbsp;|&nbsp;");
        charReplace = charReplace.replace("&gt;","&nbsp;|&nbsp;");
        charReplace = charReplace.replace("&gt;","&nbsp;|&nbsp;");
        $(this).html(charReplace);
    });
    
    $(".MMDataCaptureForm_TextArea").removeClass("MMDataCaptureForm_FieldTD");
    $(".MMDataCaptureForm_TextArea textarea").attr("style","height: 137px;");
    
    $(".book_online").fullLink();
    
    $(".copyright a").each(function(){
        $(this).after("&nbsp;&nbsp;&nbsp;&nbsp;");
    });
	
	//User Interaction
	
	$("#navigation").each(function(){
        $("td:last",this).attr("style","border: none;");
    });
    
    $(".follow").each(function(){
       $("ul li:first",this).attr("style","margin: 0px;");
    });
    
    $(".quotes .quote_item:eq("+Math.floor(Math.random()*$(".quotes .quote_item").length)+")").show();
    
    
});
