$(document).ready(function(){
	
	if ( document.title == 'StableCrete - Applications' || document.title == 'StableCrete - Applications > Concrete Flooring Protection' || document.title == 'StableCrete - Applications > Concrete in Marine Environments' || document.title == 'StableCrete - Applications > Waterproofing Concrete to Create a Low/No Moisture and Oxygen Matrix' || document.title == 'StableCrete - Applications > Repairs to Reinforced Concrete with Steel Corrosion' || document.title == 'StableCrete - Applications > Water & Waste Water treatment Facilities' )
	{
	
		$('li#appdd').hover( 
			function(){
			  $('div', this).css('display', 'block');
			  $('a#appddlink').css('background', 'url(images/nav_right.jpg) top right no-repeat');
			},
			function(){
			  $('div', this).css('display', 'none');
		});
	
	} else {
	
		$('li#appdd').hover( 
			function(){
			  $('div', this).css('display', 'block');
			  $('a#appddlink').css('background', 'url(images/nav_right.jpg) top right no-repeat');
			},
			function(){
			  $('div', this).css('display', 'none');
			  $('a#appddlink').css('background', 'none');
		});
		
	}
	
	
	$('#faqcontainer div:odd').addClass('odd');
	$('#projectcontainer div:odd').addClass('odd');

	
});

function date(){
	var currentTime = new Date()
	var year = currentTime.getFullYear()
	document.write(year)
}