$(window).load(function(){

	/** SearchBox */
	$('form input[name="q"]').attr('defaultValue',$('form input[name="q"]').attr('value'));
	$('form input[name="q"]').focus(function(){
		if ($('form input[name="q"]').attr('value')==$('form input[name="q"]').attr('defaultValue')){ $('form input[name="q"]').attr('value',''); }
	});
	
	$('form input[name="q"]').blur(function(){
		if ($('form input[name="q"]').attr('value')==''){ $('form input[name="q"]').attr('value',$('form input[name="q"]').attr('defaultValue')); }
	});
	/** End: SearchBox */
	
	$('.zoom').colorbox({scalePhotos: true, maxWidth: '950px', maxHeight: '100%', close: 'Zamknij'});
});
