$(document).ready(function() {

	//
	//window.onresize		= arguments.callee;
	//var documentWidth	= $(document).width();
	//var documentHeight	= $(document).height();
	//var windowWidth		= $(window).width();
	//var windowHeight	= $(window).height();
	//var screenWidth		= window.screen.width;
	//var screenHeight	= window.screen.height;


	//append, prepend itp  ---------------------------------------------------------------------------------------------------------------------------------- //
	$('.modContent').prepend('<div class="ajaxLoading"></div>');


	//domysle wartosci inputow, textarea -------------------------------------------------------------------------------------------------------------------- //
	inputDefault = function() {
		$('form[name=formSzukaj] input[name=ZnajdzFraze]').InputDefValue({
			inputValue: 'szukaj w serwisie'
		});

		$('form[name=formDodajOpinie] textarea[name=Opinia]').InputDefValue({
			inputValue: 'Treść zagadnienia:'
		});
		$('form[name=formDodajOpinie] input[name=Email]').InputDefValue({
			inputValue: 'Wpisz swój adres e-mail:'
		});

		$('form[name=formNewsletter] input[name=Email]').InputDefValue({
			inputValue: 'Wpisz swój adres e-mail.'
		});

		$('form[name=formFranchisingKontakt] input[name=Imie]').InputDefValue({
			inputValue: 'Podaj imię'
		});
		$('form[name=formFranchisingKontakt] input[name=Nazwisko]').InputDefValue({
			inputValue: 'Podaj nazwisko'
		});
		$('form[name=formFranchisingKontakt] input[name=Email]').InputDefValue({
			inputValue: 'Adres e-mail'
		});
		$('form[name=formFranchisingKontakt] textarea[name=Tresc]').InputDefValue({
			inputValue: 'Treść wiadomości'
		});

		$('form[name=formKontakt] input[name=ImieNazwisko]').InputDefValue({
			inputValue: 'podaj swóje imię i nazwisko'
		});
		$('form[name=formKontakt] input[name=TemawWiadomosci]').InputDefValue({
			inputValue: 'podaj temat wiadomości'
		});
		$('form[name=formKontakt] input[name=Email]').InputDefValue({
			inputValue: 'podaj swój adres e-mail'
		});
		$('form[name=formKontakt] textarea[name=Tresc]').InputDefValue({
			inputValue: 'wpisz treść wiadomości'
		});

		$('.Alert').html('');
	}
	inputDefault();


	//input file -------------------------------------------------------------------------------------------------------------------------------------------- //
	$("input[type=file]").filestyle({
		buttonImage: "choose_file.png",
		buttonHeight: 22,
		buttonWidth: 124
	});


	//selectbox --------------------------------------------------------------------------------------------------------------------------------------------- //
	$('.niceSelectBox-730').selectbox({
		inputBgImage: 'bg_selectbox_730.png',
		closeType: 'out',
		otherClass: '',
		maxHeight: 180
	});

	$('.niceSelectBox-215').selectbox({
		inputBgImage: 'bg_selectbox_215.png',
		closeType: 'out',
		otherClass: 'findIcon',
		maxHeight: 180
	});


	//inne ---------------------------------------------------------------------------------------------------------------------------------------------------- //
	submitForm = function(_str) {
		$("form[name="+_str+"]").submit();
	}

	resetForm = function(_str) {
		$("form[name="+_str+"]").get(0).reset();
	}

	mainScrollTop = function (_element, _value, _quene, _duration) {
		$(_element).animate( {scrollTop: _value+'px'}, {queue:_quene, duration:_duration} );
	}


	//galerie ------------------------------------------------------------------------------------------------------------------------------------------------- //
	/*if ( $(".galeriaSklepy").length > 0 ) {
		$(".galeriaSklepy").galleryShop({
		  slideSpeed: 600
		});
	}*/
        
	if ( $(".galeriaContainer").length > 0 ) {
		$(".galeriaContainer").galleryArticle({
		  slideSpeed: 400
		});
	}


	//boxy footer ----------------------------------------------------------------------------------------------------------------------------------------------- //
		$('.bg_box_short_01, .bg_box_short_02').mouseenter(function() {
			$('.bg_box_short_01').css({ backgroundPosition: '0% 0%' });
			$('.bg_box_short_02').css({ backgroundPosition: '0% 0%' });
			$('.bg_box_short_02 .Content span').css({ textDecoration: 'underline' });
		})
		.mouseleave(function() {
			$('.bg_box_short_01').css({ backgroundPosition: '0% 100%' });
			$('.bg_box_short_02').css({ backgroundPosition: '0% 100%' });
			$('.bg_box_short_02 .Content span').css({ textDecoration: 'none' });
		});

		$('.bg_box_short_03, .bg_box_short_04').mouseenter(function() {
			$(this).css({ backgroundPosition: '0% 0%' });
		})
		.mouseleave(function() {
			$(this).css({ backgroundPosition: '0% 100%' });
		});
//kosze okolicznosciowe ---------------------------------------------------------------------------------------------------------------------------------- //
	if ( $(".koszeOkoliczOpis").length > 0 ) {
		boxHeight = $(".koszeOkoliczOpis .box-2").height();
		imgHeight = $(".koszeOkoliczOpis .box-2 .image img").height();

		if ( boxHeight > imgHeight ) {
			$(".koszeOkoliczOpis .box-2 .image").css({ marginTop: (boxHeight-imgHeight)+'px' });
		}
	}


	//tmp ------------------------------------------------------------------------------------------------------------------------------------------------- //
	//$('#Obiekt_input').eq(0).css({ color: '#800000'});
       // $('#region_input').eq(0).css({ color: '#800000'});


});
