(function($){
	$(function(){
		if ($.browser.msie){
			$('ul li:has(ul)').hover(function(){ $(this).addClass('sfhover'); }, function(){ $(this).removeClass('sfhover'); });		  
		}
		$('.print a').click(function(){ window.print(); return false; });
		$('form.enews .email').focus(function(){
			if(this.value == this.defaultValue) {this.value='';}
		}).blur(function(){
			if(this.value == '') {this.value = this.defaultValue;}
		});
		$('.friend a').click(function(){
			var options = {
				width:			600,
				height: 		350,
				type: 			'iframe',
				title:			'Tell a Friend',
				overlayClose:	true
			};
			
			WSC.Dialog(this.href, options);
			return false;
		});
	});
})(jQuery);
