//onload init
$(function() {

	$('div.tabs a:not(.active)').mouseover(function(){	
		if($(this).hasClass('yard')){
			$('img',this).attr('src','gfx/yard-hov.png');
		} else {
			$('img',this).attr('src','gfx/marina-hov.png');
		}
	}).mouseout(function(){
		if($(this).hasClass('yard')){
			$('img',this).attr('src','gfx/yard.png');
		} else {
			$('img',this).attr('src','gfx/marina.png');
		}
	});
	
	$('div.newstabs a').click(function(){
	
		$('div.newstabs a').removeClass('active');
		var current_id = $(this).attr('rel');
		$('#discover_contents,#news_contents,#events_contents').hide();
		$('#'+current_id).show();
		$(this).addClass('active');
	});
	
});
