 $(document).ready(function() {  
			$('#changeLang').change(function(){document.location=$(this).val()});
			$('#menu_left ul li a').collapsor();  
			$(".social_icons ul li a img").hover(function(){
				if($(this).attr("src").indexOf("_hover") == -1) {
					var newSrc = $(this).attr("src").replace(".png","_hover.png#hover");
					$(this).attr("src",newSrc);
				}
			},
			function(){
				if($(this).attr("src").indexOf("_hover.png#hover") != -1) {
					var oldSrc = $(this).attr("src").replace("_hover.png#hover",".png");
					$(this).attr("src",oldSrc);
				}
			});


      });  
/*KOLOROWANIE TLA POD OFERTAMI PRACY*/

$(function(){
	$('#content #oferty .oferta').hide();
	$('#content #oferty .header').click(
			function(){
				$('#content #oferty .oferta').hide();
				$('#content #oferty .header').removeClass('darkBlue-2');
				$('#content #oferty .header h3').removeClass('white-2');
				$(this).next().show();
				$(this).addClass('darkBlue-2');
				$(this).children('h3').addClass('white-2')
			});
});

/*kolorowanie tabeli dotacje z ue*/

$(function(){
	
	$('#content #oferty #single:odd > .header').addClass('red');
	$('#content #oferty #single > .header').hover(function(){
			$(this).addClass('darkBlue');
			$(this).children('h3').addClass('white')
			},
		function(){
			$(this).removeClass('darkBlue');
			$(this).children('h3').removeClass('white')
		});
});

/*kolorowanie nagrod*/

$(function(){
$('.nagrody tbody tr:odd').css('background','#F2F2F2');
$('.nagrody tbody tr td:first-child').css('text-align','center');
//$('.nagrody tbody tr td:nth-child(2)').css('width','380px');
$('.nagrody tbody tr td:first-child').css('padding','5px 20px 5px 10px');


$('.paginacja a').click(function(){
	var aktywnyLink = $('.paginacja a').index(this);
	$(this).siblings().removeClass('active').end().addClass('active');
	$('.nagrody').hide();
	$('.nagrody:eq('+aktywnyLink+')').show();
	return false;
})

});


$(function(){

$('.paginacja_marki a').click(function(){
	var aktywnyLink = $('.paginacja_marki a').index(this);
	$(this).siblings().removeClass('active').end().addClass('active');
	$('.marki').hide();
	$('.marki:eq('+aktywnyLink+')').show();
	return false;
})

});
/*
Powiekszenie obrazka po najechaniu kursorem

$(function(){
	var offsetX = 20;
	var offsetY = 300;

	$('#nagrody tbody tr td a').hover(function(e)
		{
			var href = $(this).attr('href');
			$('<img id="largeImg" src="'+href+'" />').css('top',e.pageY).css('left',e.pageX)
				.appendTo('body')
		},function(){
			$('#largeImg').remove();
		}
		
	
	);
	
	$('#nagrody tbody tr td a').mousemove(function(e) {
		$("#largeImg").css('top', e.pageY - offsetY).css('left', e.pageX + offsetX);
	});

});*/
	
/*MENU W ZAKLADCE KONTAKT*/	

$(function(){
	$('.kontaktDiv:eq(0)').show();
	$('.kontakt_menu li').click(function(){
	
		var klik=$('.kontakt_menu li').index(this)+1;
		//alert(klik);
		$('.kontakt_menu li').removeClass('aktywna');
		$(this).addClass('aktywna');
		$('.kontaktDiv').hide();
		$('.kontaktDiv:eq('+klik+')').show();
		
	
	});
});

$(function(){
$('#dotacje tbody tr:odd').css('background','#F2F2F2');
$('#dotacje tbody tr td:first-child').css('text-align','center');

});

/*FORMS*/

$(function(){
	$('.form_kontakt-1').hide();
	$('a.form_activate').click(function(){
	  $('.form_kontakt-1').hide();
		$(this).next('div').toggle();
		//next().toggle();
		return false;
	})
});

/*historia i aktywny rok w tabelce z danymi*/
$(function(){
	
	$('#history tbody tr td:first-child').css({'color':'#03388C','font-weight':'bold'});
	$('table#history tr:not(.showThat)').hide();
	
	$('.scrollContainer li').click(
		function(){
			$('.scrollContainer li').removeClass('aktywny-historia').removeClass('showThat');
			$('table#history tr').hide();
			var klikniety=$('.scrollContainer li').index(this);
		
			$('table#history tr:eq('+klikniety +')').show();
			$('.scrollContainer li:eq('+klikniety+')').addClass('aktywny-historia');
			return false;
		});
	});
	
/*HURT*/
$(function(){
	$('#hurt_obsluga h3.open').css('cursor','pointer').next().next().hide();
	/*$('#hurt_obsluga h3').hover(
		function(){
			$(this).css('text-decoration','underline')
		},
		function(){
			$(this).css('text-decoration','none')
		}
	)*/
	$('#hurt_obsluga h3.open').toggle(
			function(){
				
				$(this).next().next().slideDown('fast');
				$(this).children('span').html("<img src='http://www.euro-trade.nazwa.pl/test/images/strzalki_serwisy_up.gif' class='strzalki_serwisy' />")},
			function(){
			$(this).next().next().hide();
				$(this).children('span').html("<img src='http://www.euro-trade.nazwa.pl/test/images/arrows_serwisy.gif' class='strzalki_serwisy' />")}
			)
	});
		
			


/*$(function(){
	$('#biuroContent h3.open').css('cursor','pointer').css('padding-top','10px').next().next().hide()
	$('#biuroContent h3.open').toggle(
			function(){
				$(this).next().next().show();
				$(this).children('span').html("<img src='http://www.euro-trade.nazwa.pl/test/images/strzalki_serwisy_up.gif' class='strzalki_serwisy' />")},
			function(){
			$(this).next().next().hide();
				$(this).children('span').html("<img src='http://www.euro-trade.nazwa.pl/test/images/arrows_serwisy.gif' class='strzalki_serwisy' />")}
			)
	});
*/		


/*BIURO*/


$(function(){
	$('#biuro_daneKontaktowe h3.open').next().next().hide();
	$('#biuro_daneKontaktowe h3.open').toggle(
			function(){
				$(this).next().next().slideDown('fast');
				$(this).children('span').html("<img src='http://www.euro-trade.nazwa.pl/test/images/strzalki_serwisy_up.gif' class='strzalki_serwisy' />")},
			function(){
				$(this).next().next().hide();
				$(this).children('span').html("<img src='http://www.euro-trade.nazwa.pl/test/images/arrows_serwisy.gif' class='strzalki_serwisy' />")}
			)
	});		
	
/*DAD*/
$(function(){
	$('#dadContent h3.open').next().next().hide();
	$('#dadContent h3.open').toggle(
			function(){
				$(this).next().next().slideDown('fast');
				$(this).children('span').html("<img src='http://www.euro-trade.nazwa.pl/test/images/strzalki_serwisy_up.gif' class='strzalki_serwisy' />")},
			function(){
				$(this).next().next().hide();
				$(this).children('span').html("<img src='http://www.euro-trade.nazwa.pl/test/images/arrows_serwisy.gif' class='strzalki_serwisy' />")}
			)
	});		



/*POLITYKA PRYWATNOSCI*/
	$(function(){
		$('h3.pp_hide').next().next().hide();
		$('h3.pp_hide').toggle(
			function(){
				$(this).next().next().slideDown('fast');
				$(this).children('span').html("<img src='http://www.euro-trade.nazwa.pl/test/images/strzalki_serwisy_up.gif' class='strzalki_serwisy' />")},
			function(){
				$(this).next().next().hide();
				$(this).children('span').html("<img src='http://www.euro-trade.nazwa.pl/test/images/arrows_serwisy.gif' class='strzalki_serwisy' />")}
			)
	});
	
/*NASZE MARKI*/
$(function(){
$('#nasze_marki tbody tr td:first-child').css('text-align','center');
$('#nasze_marki tbody tr:odd').css('background','#F7F8FB');

});
