/* Author: 



var tabs = {
	init : function(){
		this.tabs = $('.tab');
		this.active = $('.tabs.active');

		this.switcher = $('.tabs-menu a');
	},
	build : function(){
		this.init();
		this.attachEvents();

		var tab = window.location.hash;
		if (tab != '') {
			$("a[rel='" + tab.substring(1) + "']").click();
		}
	},
	attachEvents: function(){
		var that = this;
		
		this.switcher.bind('click', function(){

			if($(this).hasClass('real-link')){
				window.location = $(this).attr('href');
			}
			else {
				that.switcher.removeClass('active');
				$(this).addClass('active');
				that.tabs.hide();
				$('#'+$(this).attr('rel')).show();
			}
			return false;
		});
	}
}

*/
