jQuery.noConflict();

jQuery(document).ready(function($) {
	// Superscript all registration marks
	$('body *').replaceText(/\u00ae/gi, '<sup>&reg;<\/sup>');
	
	// First make sure we are not in print mode or on MyStik pages (richness hack)
	if($('.menu').css('display')!='none' && $('.boxShadow').css('richness')!='67') {
		// Box Shadow effect for  Internet Explorer
		$('.ie6 .boxShadow, .ie7 .boxShadow, .ie8 .boxShadow').boxShadow(0, 5, 7, '#003d60');	
		$('.ie6 .moduletable_intro, .ie7 .moduletable_intro, .ie8 .moduletable_intro').boxShadow(0, 5, 7, '#003d60');	
		$('.moduletable_various').boxShadow(0, 5, 7, '#003d60');	
		$('.ie6 .moduletable_product_categories, .ie7 .moduletable_product_categories, .ie8 .moduletable_product_categories').boxShadow(0, 5, 7, '#003d60');	
		
		// Cross-browser hover effect for navigation
		jQuery('#navigation li').each(function(element){
			jQuery(this).mouseenter(function(){
				jQuery(this).addClass('hover');
				if(jQuery('li', this).length>0) {
					jQuery('#payoff, .search').css('display', 'none');
				}
			});
			jQuery(this).mouseleave(function(){
				jQuery(this).removeClass('hover');
				if(jQuery('li', this).length>0) {
					jQuery('#payoff, .search').css('display', 'block');
				}							
			});
		});
	}
});	