$(document).ready(function() {
	
	/* Clearing inputs
	---------------------------------------------- */
	var CLASS = '.clear-me';	
	 
	$(CLASS).each(function() {
	
		var VALUE = $(this).attr('value');
			
		$(this).focus(function() {
		 	if ($(this).attr('value') == VALUE)
				$(this).attr('value', '');
		});
		
		$(this).blur(function() {
		 	if ($(this).attr('value') == '')
				$(this).attr('value', VALUE);
		});
	});
	
	
	/* Tabbed menu
	---------------------------------------------- */
		var CURRENT;	selectCurrent();
		
		function selectCurrent() {
			$('.tabbed .tabbed-item').hide();
			
			/* Checking current */
			$('.tabbed .tabbed-menu li').each(function(index) { 
				if($(this).hasClass('current')) 
					CURRENT = index;
			});
			
			/* Show current box */
			$('.tabbed .tabbed-item').each(function(index) { 
				if(index == CURRENT) 
					$(this).show();
			});		
		}		
		
		/* Actions */
		$('.tabbed .tabbed-menu li a').click(function() {
			
			// Select current tab
			$('.tabbed .tabbed-menu li').removeClass('current');
			$(this).parent('li').addClass('current');
			
			// Show current box
			selectCurrent();
			
			return false;
		});
	
});
