
// Dom Ready
$(document).ready(function(){
						

	 // international contact changer
	$('.intDetailDiv').hide();   
	$('#theChoices').change(function() {     
		$('.intDetailDiv').hide();     
		$('#' + $(this).val()).show();  
	});
	
	
	 // change home banners
	$('#homeBanner').cycle({ 
    fx: 'fade', 
    speed:    300,
	pause: true,
    timeout:  6000 
	});	
	
	Cufon.replace('h1:not(.clean)');

});


// suckerfish
sfHover = function() {
    var sfEls = document.getElementById("nav").getElementsByTagName("LI");
    for (var i=0; i<sfEls.length; i++) {
        sfEls[i].onmouseover=function() {
            this.className+=" sfhover";
        }
        sfEls[i].onmouseout=function() {
            this.className=this.className.replace(new RegExp(" sfhover\\b"), "");
        }
    }
}
if (window.attachEvent) window.attachEvent("onload", sfHover);

