﻿$(document).ready(function(){
	$("#content #col2 #article.kontakt a:contains('map')").click(function(){
		window.open(this.href, this.href, "width=580,height=460,resizable,scrollbars=yes,status=1");
		return false;
	});
	$("#content #col1 #rynek").change(function(){
		if (this.value.length > 3)
			document.location.href = this.value;
	});
	$("#print a").click(function(){
		print();
		return false;
	});
	$("#content #col2 .screens ul li a").click(function(){
		img = new Image();
		img.src = this.href;
		var contents = '<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"><html xmlns="http://www.w3.org/1999/xhtml" lang="pl">'
		contents += '<head><meta http-equiv="Content-type" content="text/html; charset=utf-8" /><title>';
		contents += this.title;
		contents += '<\/title><link rel="stylesheet" href="css/screens.css" type="text/css" /><\/head><body>';
		contents += '<div id="wrapper"><a href="javascript:window.close();"><img src="' + img.src + '" alt="' + $(this).find("img").attr("alt") + '" \/></a><p>' + this.title + '</p><p><a href="javascript:window.close();">Close this window</a></p><\/div>';
		contents += '<\/body><\/html>';
		popup = window.open('about:blank','popup','location=no,menubar=no,status=no,scrollbars=yes,toolbar=no,width=700,height=440,resizable=yes');
		popup.document.open();
		popup.document.write(contents);
		popup.document.close();
		return false;
	});
	//BANNERY FLASH
	$("#menu #header").css("textIndent", "0");
	if ($("#menu #header h1 a").size() == 0) { //strona główna
		$("#menu #header h1, #menu #header p").text("");
		var so = new SWFObject("swf\/homepage_left.swf", "movl", "420", "197", "7", "#fff");
		so.write($("#menu #header h1").get(0));
		so = new SWFObject("swf\/homepage_right.swf", "movr", "330", "197", "7", "#fff");
		so.write($("#menu #header p").get(0));
		so = new SWFObject("swf\/baner_2.swf", "obsp", "338", "67", "7", "#fff");
		so.write($("#col2 #banner2").get(0));
	}
	else { //podstrona
		$("#menu #header h1, #menu #header p").text("");
		var so = new SWFObject("swf\/subpage_left.swf", "movl", "420", "140", "7", "#fff");
		so.write($("#menu #header h1").get(0));
		var right = "swf\/ogolny_right.swf";
		if ($("#item1.active").size() != 0)
			right = "oferta_right.swf"; //dział "Oferta"
		else if ($("#item2.active").size() != 0)
			right = "ofirmie_right.swf"; //dział "O firmie"
		else if ($("#item3.active").size() != 0)
			right = "referencje_right.swf"; //dział "Referencje"
		else if ($("#item4.active").size() != 0)
			right = "partnerzy_right.swf"; //dział "Partnerzy"
		else if ($("#item5.active").size() != 0)
			right = "aktualnosci_right.swf"; //dział "Aktualnosci"
		else if ($("#item6.active").size() != 0)
			right = "kontakt_right.swf"; //dział "Kontakt"
		if ($(".active > a:contains('INFInet')").size() != 0)
			right = "infinet_right.swf"; //działy  z "INFInet" w nazwie
		so = new SWFObject("swf\/" + right, "movr", "255", "140", "7", "#fff");
		so.write($("#menu #header p").get(0));
	}
    
    document.title = 'Varico - Software developer and IT provider for Polish and European SMEs';
});

