jQuery(document).ready( 
	function()
	{
		jQuery('ul.home_links li,ul.portfolio li span,.portfolioproject ul li span').live('mouseover', function(e){
			jQuery(this).css("background-image", "url('"+jQuery(this).attr("name")+"')");
		});
		jQuery('ul.home_links li,ul.portfolio li span,.portfolioproject ul li span').live('mouseout', function(e){
			jQuery(this).css("background-image", "url('"+jQuery(this).attr("rel")+"')");
		});
		
		jQuery('ul.home_links li div.link').bind('click', function(e){
			var href = jQuery(this).attr('name');
			if (StartsWith(href, 'http')) {
				open(href);
			} else {
				window.location.href = href;
			}
			return false;			
		});		
	}
); 
