var inputValues = {};
function inputChange(selector){
	$(selector).each(function(){
		inputValues[$(this).attr('name')] = $(this).val();
	});
	$(selector).click(function(){
		if($(this).val() == inputValues[$(this).attr('name')]){
			$(this).val('');
		}
	});
	$(selector).blur(function(){
		if($(this).val() == ''){
			$(this).val(inputValues[$(this).attr('name')]);
		}
	});
}

$(document).ready(function(){
	inputChange("input");
});

/*
function run_fb_realizacja(){
	$(".fb_realizacja").fancybox({
		'width'				: 660,
		'height'			: 800,
		'padding'			: 5,
		'autoDimensions': false,
        'autoScale'     	: true,
        'transitionIn'		: 'none',
		'transitionOut'		: 'none',
		'type'				: 'iframe',
		'centerOnScroll': true,
		'overlayColor': '#000',
		'overlayOpacity': 0.8
	});
}

//fb_realizacja
$(document).ready(function(){
	run_fb_realizacja();
});
*/
