/* 
 * To change this template, choose Tools | Templates
 * and open the template in the editor.
 */
$(document).ready(function() {
    $('#form1 #textfield').focus(function () {
	if($(this).val() == "WYSZUKIWARKA") $(this).val("");
    }).blur(function () {
	if($(this).val() == "") $(this).val("WYSZUKIWARKA");
    });
    
    
    $('#newsletter input[type="text"]').focus(function () {
        if($('#newsletter-label').html() == "podaj adres email") $($('#newsletter-label')).html("");
    }).blur(function () {
        if($('#newsletter-label').html() == "") 
    	    $('#newsletter-label').html("podaj adres email");
    	    $(this).val('');
    });
});

