$(document).ready(function(){




	/* **************************************************************************************************** */
	// TARGET BLANK Replacement
	
	if( $("a.ext").length )
	{
		$("a.ext").click(function(){
			window.open(this.href); 
			return false;
		});		
	}
	if( $(".extlist").length )
	{
		$(".extlist li a").click(function(){
			window.open(this.href); 
			return false;
		});		
	}	
	 
	
	

	/* **************************************************************************************************** */
	// Contact rollover
	
	if( $(".contact").length )
	{
		$(".contact").hover(function(){			
		

			
			$(this).stop().animate( {backgroundPosition:'7px 0px'}, {duration:200});
			$(this).children("span").stop().animate( {left:'55px'}, {duration:200});

		},function(){	
			$(this).stop().animate( {backgroundPosition:'0px 0px'}, {duration:100})
			$(this).children("span").stop().animate( {left:'48px'}, {duration:100});			
		});
	}
	
	/* **************************************************************************************************** */
	// Logo rollover
		
	if( $("#logo").length )
	{
		$("#logo").hover(function(){	
		
		
			if( jQuery.browser.msie) {
//				$(".cover").css('behavior', 'url(/iepngfix.htc)');
				$(".cover").stop().show();

			}else{
				$(".cover").stop().fadeIn('200');			
			}				
		},function(){	
			$(".cover").stop().hide();
		});
	}	

});
