$(document).ready( function()
{          
    Cufon.replace('h1, h2, h3, h4', {
        hover: true
    });
    
    Cufon.replace('#nav li', {
        hover: true
    });   
    
    Cufon.replace('.subNav td', {
        hover: true
    });                
    
    $("#frmQuickSearch label").inFieldLabels();    
    
    // Add // to the end of each More link
    $("a.more").each(function() {
        $(this).text($(this).text() + "//");
    });

    $('ul.quickLinks a').hover(function(){
        $(this).find('img').animate({opacity: 0.8}, 300);
    }, function(){
        $(this).find('img').animate({opacity: 1}, 300);
    });
    
    // Style the selects in all browsers except ie7
    if(navigator.userAgent.indexOf("MSIE 7") == -1) 
    {
        $('#enquiryType').SelectCustomizer();   
    }    
    
    $("#frmContact").submit(function()
    {
		if(!$(this).validate().form())
		{
			alert("Please fill in all of the required fields.  The required fields are now highlighted in dark green.");
			return false;
		}
		
		return true;
    });
});
