/**
 * @author Admin
 */

/**
* Add to onload event of the page !
*/
function initSellers()
{
	
	
	//user click
	 $('#right .seller .sellerInfo input[@name="email"],#right .writeUs input[@name="email"]').focus(function() {
		
	 	if ($(this).val() == "Váš e-mail")
		{
			//console.log('je');
			
			$(this).val("@")  ;
		} 
		
		
				
	}
	);
		
	 $('#right .seller .sellerInfo textarea[@name="message"],#right .writeUs textarea[@name="message"]').focus(function() {
		
	 	if ($(this).val() == "Vaše zpráva") 
	 	{
	 		$(this).html("")  ;
	 		$(this).val("")  ;
	 	}
				
	}
	);
	
	//obnova	
	 $('#right .seller .sellerInfo input.text[@name="email"],#right .writeUs input[@name="email"]').blur(function() {
		
	 	if ($(this).val() == "" || $(this).val() == "@") 
		{
			$(this).val("Váš e-mail");
		}
				
	}
	);
	
	 $('#right .seller .sellerInfo textarea[@name="message"],#right .writeUs textarea[@name="message"]').blur(function() {
		
	 	if ( ($(this).val() == ""))  $(this).val("Vaše zpráva") ;
	 	
	 
				
	}
	);
		
		
	
	
	
	
	
	
	
	
	
}

	

/**
* Add method in argument to onload event of the page !
*/

$(document).ready(function()
{

	initSellers();

});
