$(function(){
	$('.longBox, .shortBox').bind('mouseenter',function(){
		$(this).addClass('mouseActiveBox');
	}).bind('mouseleave',function(){
		$(this).removeClass('mouseActiveBox');
	});
	$('.longBox, .shortBox').bind('click',function(){
		window.location = $(this).attr('rel');
	});
	$('input[name="search"]').bind('focus',function(){
		if($(this).val() == 'Wpisz szukaną frazę') {
			$(this).attr('value','');
		}
	}).bind('blur',function(){
		if($(this).val() == '') {
			$(this).attr('value','Wpisz szukaną frazę');
		}
	});
	
	$('.print').bind('click',function(){
		window.print();		
	})
	
	$("a[rel^='prettyPhoto']").prettyPhoto({
		gallery_markup:'',
		theme: 'light_rounded',
		allow_resize:false
	});
	
})
