$(document).ready(function(){

	$('ul li:last-child').addClass('last');

	//najoferty hover
	if( $('#najoferty').get(0) && $.browser.msie != true ) {
		$('#najoferty li').hover(
		function(){
			$(this).siblings().stop(true, false).animate({opacity: '0.5'}, 'fast');
		},
		function(){
			$(this).siblings().animate({opacity: '1'}, 'fast');
		});
	}

	//lightbox
	if( $('.lightbox').get(0) ) {
	$('a.lightbox').fancybox({
		titlePosition: 'over',
		autoDimensions: true
	});
	}
	$('.iframe').fancybox();

	//formularz kontaktowy
	if( $('form').get(0) ) {

		$("form").validator({
			position: 'top left',
			offset: [6, 10],
			message: '<div><em/></div>',
			lang: 'pl'
		});

	$.tools.validator.localize("pl", {
	'*'			: 'Popraw pole',
	':email'  	: 'Nieprawidłowy email',
	':number' 	: 'Tylko liczby!',
	':url' 		: 'Nieprawidłowy url',
	'[required]': 'Pole wymagane'
});
}



var option = {
  x:      0,
  y:      1,
  radius: 2,
  color:  "#666"
}

var option1 = {
  x:      0,
  y:      1,
  radius: 2,
  color:  "#111"
}

var option2 = {

  x:      0,
  y:      1,
  radius: 2,
  color:  "#333"
}

if ($.browser.msie) {

	$("#horiz a").textShadow(option);
	$("h1").textShadow(option1);
	$("h2").textShadow(option1);
	$("h3").textShadow(option2);
}

//animation in header

function headerAnim() {

	$('#img_over_horiz2 li').hide();
	$('#img_over_horiz2 li:first-child').delay(100).fadeIn(2000);
	$('#img_over_horiz2 li:nth-child(2)').delay(300).fadeIn(2000);
	$('#img_over_horiz2 li:nth-child(3)').delay(600).fadeIn(2000);
	$('#img_over_horiz2 li:last-child').delay(900).fadeIn(2000);

} headerAnim();


//zmiana inputa wyszukiwarki
$('#search input').focusin(function(){
	$(this).attr('value','')
});

//textarea
$('#kontakt textarea').focusin(function(){
	$(this).attr('value','')
});

//bg w operze na inputach

if ($.browser.opera) {
	$('input').css('border', 'solid 1px rgba(0, 0, 0, 0)');
}



}); //ready

