/* 
	JavaScript by Krzysztof Wolniak
	WWW: http://wolniak.org
	(c) All rights reserved
*/

$(document).ready(function(){

	// Obsluga prostego wyszukiwania
	$('#inputSearch').focus(function(){
		this.value = '';
	});
	
	$('#inputSearch').blur(function(){
		if(this.value == '')
		{
			this.value = 'szukaj w sklepie';	
		}
	});

});
