$(document).ready(function(){
	var Lheight = $('.b-main-block .b-bottom .b-left-column').height();
	var Rheight = $('.b-main-block .b-bottom .b-right-column').height();
	if (Lheight >= Rheight) {
	   $('.b-main-block .b-bottom .b-right-column').css('height', Lheight);
	}else {
	   $('.b-main-block .b-bottom .b-left-column').css('height', Rheight);
	}
	// text inputs hints
	$(".text_hint[value!=]")
		.each(function(){this.hint=this.value})
		.bind("focus",function(){if(this.hint==this.value){$(this).attr("value","").removeClass("text_hint")}})
		.bind("blur",function(){if(this.value==""){	$(this).attr("value",this.hint).addClass("text_hint")}})
	
	
	//news list
	$('.b-news li').last().addClass('last');
	//gal
	$("a[rel=example_group]").fancybox({
				'transitionIn'		: 'none',
				'transitionOut'		: 'none',
				'titlePosition' 	: 'over',
				'titleFormat'		: function(title, currentArray, currentIndex, currentOpts) {
					return '<span id="fancybox-title-over">Zdjęcie ' + (currentIndex + 1) + ' / ' + currentArray.length + (title.length ? ' &nbsp; ' + title : '') + '</span>';
				}
			});
	
		
	//
		$("#contact").validate();
		
		
		
	//textshadow for ie
	$(' .b-slogan').textShadow();
	
});


	
		


