﻿$(document).ready(function(){
//galeria start    
$("a.group").fancybox({
        'hideOnContentClick': false, 
        'easingIn' : 'easeOutBack',
        'easingOut' : 'easeInBack'
});

//galeria end  	

/* flash az oldal tetejen
var attributes = {};
var flashvars = {};
var params = {};
var params = {
  menu: "false",
  wmode: "transparent"
};
swfobject.embedSWF("images/site/header.swf", "flash", "898", "254", "8.0.0","images/eixpressInstall.swf", flashvars, params, attributes);
*/


/*
$(".gallery-images .group img").mouseover(function() {
 $(".group img").css("width", "125px");
 this.  style.width = "128px";
});*/


 });

 
function menuclick(id){
	if(document.getElementById('mnul_'+id)){
		LoadContent(id);
		if(document.getElementById('mnul_'+id).style.display=='none'){
			document.getElementById('mnul_'+id).style.display='';
		}
		else{
			document.getElementById('mnul_'+id).style.display='none';
		}
		document.getElementById('mna_'+id).removeAttribute('href'); 
		return true;

	}
	else{
		return true;
	}
}

function LoadContent(id){
	var html = $("#mnul_"+id).html();
	// keressuk az elso .html linket
	var start = html.search(/href="/i);
	var html2 = html.substr(start+6,200);
	var end = html2.search(/"/i);
	var url = html2.substr(0,end);
	window.location.href = url;
	
}
  
