// JavaScript Document

function addOnclicks() {
	var activePage = 'main';
	$("li.onas, li.onas a").click(function() {
		
		$("#iCoSlychac").attr('src', 'images/co_slychac.png');
		$("#iMaterialyPrasowe").attr('src', 'images/materialy_prasowe.png');
		$("#subpage").fadeOut(300);
		setTimeout(function() {
			$.get('onas.html', function(data) {
				$("#subpage").html(data).fadeIn(300);								  
			});
		},400);
		activePage = 'main';
		return false;
	});
	$("li.oferta").click(function() {
		window.location = 'oferta.html';
	});
	$("li.portfolio").click(function() {
		window.location = 'portfolio.html';
	});
	$("li.kontakt").click(function() {
		window.location = 'kontakt.html';
	});
	
	$("#iCoSlychac").click(function() {
		if (activePage == 'co_slychac')
			return false;
		$(this).attr('src', 'images/co_slychac_a.png');
		$("#iMaterialyPrasowe").attr('src', 'images/materialy_prasowe.png');
		$("#subpage").fadeOut(300);
		setTimeout(function() {
			$.get('co_slychac.html', function(data) {
				$("#subpage").html(data);								  
				$("#subpage").fadeIn(300);
			});
		}, 400);
		activePage = 'co_slychac';
		return false;
	});
	
	$("#iMaterialyPrasowe").click(function() {
		if (activePage == 'materialy')
			return false;
		$(this).attr('src', 'images/materialy_prasowe_a.png');
		$("#iCoSlychac").attr('src', 'images/co_slychac.png');
		$("#subpage").fadeOut(300);
		setTimeout(function() {
			$.get('materialy_prasowe.html', function(data) {
				$("#subpage").html(data);								  
				$("#subpage").fadeIn(300);
			});
		}, 400);
		activePage = 'materialy';
		return false;
	});
	
	//making submenu hovers
	var img;
	$("img[id^='i']").hover(function(){
		img = $(this).attr('src').slice(0,-4);
		if (img.slice(-2)=='_a')	//active
			return false;
		$(this).attr('src', img+'_a.png'); 
	},
	function() {
		if (img.indexOf(activePage)>=0)
			return false;
		$(this).attr('src', img+'.png');
	}
	);
	
}
