var flashvars = {};
		flashvars.xml = "gallery/config.xml";
		flashvars.font = "gallery/font.swf";
		var attributes = {};
		attributes.wmode = "transparent";
		attributes.id = "slider";
		swfobject.embedSWF("gallery/cu3er.swf", "cu3er-container", "828", "558", "9", "expressInstall.swf", flashvars, attributes); 




	$(function() {
		// set opacity to nill on page load
		$("ul#menu span").css("opacity","0");
		// on mouse over
		$("ul#menu span").hover(function () {
			// animate opacity to full
			$(this).stop().animate({
				opacity: 1
			}, 'slow');
		},
		// on mouse out
		function () {
			// animate opacity to nill
			$(this).stop().animate({
				opacity: 0
			}, 'slow');
		});
	}); 

$(function() {
		// set opacity to nill on page load
		$(".element").css("opacity","1");
		// on mouse over
		$(".element").hover(function () {
			// animate opacity to full
			$(this).stop().animate({
				opacity: 0.3
			}, 'slow');
		},
		// on mouse out
		function () {
			// animate opacity to nill
			$(this).stop().animate({
				opacity: 1
			}, 'slow');
		});
	}); 

$(function() {
		// set opacity to nill on page load
		$("div#kol, #ses, #pra").css("opacity","1");
		// on mouse over
		$("div#kol, #ses, #pra").hover(function () {
			// animate opacity to full
			$(this).stop().animate({
				opacity: 0.3
			}, 'slow');
		},
		// on mouse out
		function () {
			// animate opacity to nill
			$(this).stop().animate({
				opacity: 1
			}, 'slow');
		});
	}); 
 
 window.onload = function () {
	document.body.onselectstart = function () {
		return false;
	}
	
	document.body.ondragstart = function () {
		return false;
	}

	document.body.onselect = function () {
		return false;
	}


}

!window.jQuery && document.write('<script src="jquery-1.4.3.min.js"><\/script>');
