var FrontLogic = {		
	contForm: function(input, value){
		var input = $(input);
		var val = value; 
		
		input.val(val);
		
		input.focus(function(){
			var newValue = $(this).val();
			if($(this).val() == val){
				$(this).attr('value','');
			}
			else {
				$(this).val(newValue);
			}
		});
		
		input.blur(function(){
			var newValue = $(this).val();
			if($(this).val() == ''){
				$(this).attr('value', val);
			}
			else {
				$(this).val(newValue);
			}
		});
	},
	
	dropDown: function(){
		$('#navigation > li').hover(
			function() {$(this).children("ul").stop(true, true).slideDown("normal");},
			function() {$(this).children("ul").stop(true, true).slideUp("fast");});
	}
};

$(document).ready(function() {
	//SK
	FrontLogic.contForm(".wpcf_sk .your-name input", "Meno");
	FrontLogic.contForm(".wpcf_sk .your-surname input", "Priezvisko");
	FrontLogic.contForm(".wpcf_sk .your-email input", "E-mail");
	FrontLogic.contForm(".wpcf_sk .your-company input", "Spoločnosť");
	FrontLogic.contForm(".wpcf_sk .your-phone input", "Telefón");
	FrontLogic.contForm(".wpcf_sk .your-message textarea", "Správa");
	FrontLogic.contForm(".wpcf_sk .captcha input", "Antispam");
	
	//EN
	FrontLogic.contForm(".wpcf_en .your-name input", "Name");
	FrontLogic.contForm(".wpcf_en .your-surname input", "Surname");
	FrontLogic.contForm(".wpcf_en .your-email input", "E-mail");
	FrontLogic.contForm(".wpcf_en .your-company input", "Company");
	FrontLogic.contForm(".wpcf_en .your-phone input", "Phone");
	FrontLogic.contForm(".wpcf_en .your-message textarea", "Message");
	FrontLogic.contForm(".wpcf_en .captcha input", "Antispam");
	
	FrontLogic.dropDown();
});
