$(function(){
	$('#tabs_moduler .tabs .tab').bind('click', changeTab);
});


function changeTab(event){
	var thisObj = $(this);
	var thisObjId = thisObj.attr('id');
	var content = $('#tabs_moduler .content');
	var tabs = $('#tabs_moduler .tabs .tab');
	
	tabs.each(function(index){
		$(this).removeClass('selected');
	});
	
	thisObj.addClass('selected');
	
	content.each(function(index){
		$(this).removeClass('show');
		
		if( $(this).hasClass(thisObjId) )
			$(this).show();
		else
			$(this).hide();
		
	});
}
