var loginTextValue;
$(document).ready(function(){
	
	/* show, hide text when focus on the search box */
	$('#searchFormHolder input[type=text]').focus(function(){
		if($(this).val()== "Pretraga...")
		{
			$(this).val("");
		}
	});
	$('#searchFormHolder input[type=text]').blur(function(){
		if($(this).val()== "")
		{
			$(this).val("Pretraga...");
		}
	});
	
	/* show, hide text when focus on the search box */
	$('#newsletterInnerFormHolder input[type=text], #newsletterFormHolder input[type=text]').focus(function(){
		if($(this).val()== "Vaš e-mail...")
		{
			$(this).val("");
		}
	});
	$('#newsletterInnerFormHolder input[type=text], #newsletterFormHolder input[type=text]').blur(function(){
		if($(this).val()== "")
		{
			$(this).val("Vaš e-mail...");
		}
	});
	
});

