$(function () {
	
  $('.colorbox').colorbox({width:'550px', height:'390px'});		
	
	var tabs = [];
	var tabContainers = [];
	var images = ['uploads/assets/news/news_image_01.jpg', 'uploads/assets/news/events_blue42_01.png'];
	$('ul.tabs a').each(function () {
		// note that this only compares the pathname, not the entire url
		// which actually may be required for a more terse solution.
//		if (this.pathname == window.location.pathname) {
			tabs.push(this);
			tabContainers.push($(this.hash).get(0));
//		}
	});

	$(tabs).click(function () {
		// hide all tabs
		$(tabContainers).hide().filter(this.hash).show();
	
		// set up the selected class
		$(tabs).removeClass('selected');
		$(this).addClass('selected');		
		
		if(this.hash == '#news')
		{
			$('img.news_photo').attr('src', 'uploads/assets/news/news_image_01.jpg');
//			$('a.image_link').attr({href:'#', target:'_self'});
		}
		if(this.hash == '#events')
		{
			$('img.news_photo').attr('src', 'uploads/assets/news/events_blue42_02.jpg');
//			$('a.image_link').attr({href:'http://www.mioceanblue42.com/', target:'_blank'});
		}

		return false;
	});
});
