$(document).ready(function(){ 
	
	$("a").click( function() {
		if ((this).id == 'visit') {
			window.location.href = 'http://www.moceanla.com';
		} else if ((this).id == 'twitter') {
			window.location.href = 'http://www.twitter.com/moceanla';
		} else if ((this).id == 'facebook') {
			window.location.href = 'http://www.facebook.com/moceanla';
		} else if ((this).id == 'where') {
			$('#wrap1').fadeOut(1000);
			$('#wrap2').fadeIn(1000);
		} else if ((this).id == 'hideCMP') {
			$('#wrap2').fadeOut(1000);
			$('#wrap1').fadeIn(1000);
		}
	});




});
