$().ready(function(){
	var openEffect = 'slideDown', closeEffect = 'hide', speed = 'fast';
	
	$('#callToAction .request_button').hover(function(){
		$(this).find('img:nth(0)').hide();
		$(this).find('img:nth(1)').show();
	}, function(){
		$(this).find('img:nth(1)').hide();
		$(this).find('img:nth(0)').show();
	});

    if($.browser.msie){
    	closeEffect = 'hide';
    	speed = undefined;
    	$.each($('.menu'),function(){
    		var coords = $(this).parent().offset();
    		coords.top += 28;
    		coords.left += 12;
    		$(this).offset(coords);
    	});
    }
    
	$('#primaryNavItems .navItem').hover(
		function(){
			$(this).find('ul')[openEffect]('fast');
		},
		function(){
			$(this).find('ul')[closeEffect]();
		}
	);
});
