// JavaScript Document


$(document).ready(function(){
						   
// ..............nav

$("#mainNav li:contains('|')").css({
"marginLeft" : "20px", 
"fontSize" : "14px",
"marginRight" : "20px",
"color" : "#fff"
});

// add hover state to tabs

$("#mainNav a").each(function() {
if(this.href == window.location) { 
$(this).css({"color" : "#000"})};
}); 
						   
						   
}); //end ready