// JavaScript Document

$().ready(function(){
	
	$('.menu li ul').parent().addClass('hasSub');
	
	$('.headerImage img').load( function() {
		
		var height = $(this).height();
		var width = $(this).width();
		var src = $(this).attr('src');
		var newdiv = '<div class="roundedCorners" style="width:'+width+'px; height:'+height+'px; background-image: url('+src+');"></div>';
		$(this).replaceWith(newdiv);
		
	});
	
	$('.favlinks a').attr('target','_blank');

	
});






