/*************************************************/
/**												**/
/**		Development: Hudson Marinho				**/
/**		Phone: +55 (84) 8821 5277				**/
/**		URL: http://hudsonmarinho.co.cc/		**/
/**		-----------------------------------		**/
/**		Agency: Balaio Ideias					**/
/**		URL: http://balaioideias.com.br/		**/
/**		-----------------------------------		**/
/**		Year/month:		2011/Augu				**/
/**												**/
/*************************************************/


/* all functions
.....................................*/


$(function(){
	
	$('a[rel="blank"]').click(function(){
		window.open(this.href);
		return false;
	});
	
	$('.magic-label').each(function(){
		var self       = $(this);
		var self_id    = self.attr('id');
		var self_label = $('label[for='+self_id+']').hide();
		
		self_label.next('br').hide();
		
		var reset_value = function(){
			if (self.val() == '')
				self.val(self_label.html());
		}
		
		reset_value();
		
		self.focus(function(){
			if (self.val() == self_label.html())
				self.val('');
		}).blur(reset_value);
	
		self.parents('form').submit(function()
		{
			self.focus();
		});
	});
	
});

