$(function() {
			$("#header ul.topnav li.corporate").mouseover(function() {
				$("#header ul.topnav li.corporate ul").show();
				$("#header ul.topnav li.interactive ul").hide();
				$("#header ul.topnav li.products ul").hide();
				$("#header ul.topnav li.comparison ul").hide();
			});
			$("#header ul.topnav li.corporate ul").mouseout(function() {
				$("#header ul.topnav li.corporate ul").hide();
			});

			$("#header ul.topnav li.products").mouseover(function() {
				$("#header ul.topnav li.products ul").show();
				$("#header ul.topnav li.corporate ul").hide();
				$("#header ul.topnav li.interactive ul").hide();
				$("#header ul.topnav li.comparison ul").hide();
			});
			$("#header ul.topnav li.products ul").mouseout(function() {
				$("#header ul.topnav li.products ul").hide();
			});

			$("#header ul.topnav li.interactive").mouseover(function() {
				$("#header ul.topnav li.interactive ul").show();
				$("#header ul.topnav li.products ul").hide();
				$("#header ul.topnav li.corporate ul").hide();
				$("#header ul.topnav li.comparison ul").hide();
			});
			$("#header ul.topnav li.interactive ul").mouseout(function() {
				$("#header ul.topnav li.interactive ul").hide();
			});

			$("#header ul.topnav li.comparison").mouseover(function() {
				$("#header ul.topnav li.comparison ul").show();
				$("#header ul.topnav li.corporate ul").hide();
				$("#header ul.topnav li.interactive ul").hide();
				$("#header ul.topnav li.products ul").hide();
			});
			$("#header ul.topnav li.comparison ul").mouseout(function() {
				$("#header ul.topnav li.comparison ul").hide();
			});
			// popup
			$("#header ul.topnav li a.popup").click(function() {
				window.open($(this).attr("href"), "popup", "width=780,height=500");
				return false;
			});
			$("#mobilOilGuide").click(function() {
				window.open($(this).attr("href"), "popup", "width=850,height=550");
				return false;
			});

			// homepage flash
			$("#showcase").flash({
				src		: 'swf/tr/home.swf',
				height	: 268,
				width	: 705,
				wmode	: 'transparent'
			});

			// products page top flash
			$("#topBanner .products-banner").flash({
				src		: 'uploads/banners/products.swf',
				height	: 71,
				width	: 500,
				wmode	: 'transparent'
			});

			// comparison page top flash
			$("#topBanner .comparison-banner").flash({
				src		: 'uploads/banners/comparison.swf',
				height	: 71,
				width	: 500,
				wmode	: 'transparent'
			});

			// contact page top flash
			$("#topBanner .contact-banner").flash({
				src		: 'uploads/banners/contact.swf',
				height	: 71,
				width	: 500,
				wmode	: 'transparent'
			});

			// multimedia page top flash
			$("#topBanner .multimedia-banner").flash({
				src		: 'uploads/banners/multimedia.swf',
				height	: 71,
				width	: 500,
				wmode	: 'transparent'
			});

			// photo viewer
			$("ol.gallery a").click(function() {
				var url = $(this).attr("href");
				window.open(url);
				return false;
			});
			$("a.viewer").click(function() {
				var url = $(this).attr("href");
				window.open(url);
				return false;
			});

			// homepage survey
			$(".survey .send").click(function() {
				alert('Oyunuz başarıyla kaydedilmiştir, ilginize teşekkür ederiz.');
				return false;
			});

			// homepage newsletter
			$('.newsletter form').submit(function() {
				alert('Bülten üyeliğiniz gerçekleşmiştir, ilginize teşekkür ederiz.');
				$('.newsletter form #txtNewsletter').val('');
				return false;
			});

			// popup
			$("a.new").click(function() {
				window.open($(this).attr("href"), '_blank');
				return false;
			});

			// thickbox closer
			$(".closeThickbox").click(function() {
				tb_remove();
			});

			// new window
			$("a.newWindow").click(function() {
				$(this).attr("target", "_blank");
			});
		});

		function closeFloatingBanner()
		{
			tb_remove();
		}

