var exe='';
var exeHide='';
var currentElem='';
var iBusy=0;
var mainElem= new Array('index','overons','producten','occasions','onderdelenshop','contact');
var sMainButton = '';

var sUrl = document.location.href;
var sUrlSplit = document.location.href.split('http://');
sUrl = sUrlSplit[1];
sUrl = sUrl.split("/");
sUrl = "http://"+sUrl[0];
var iType="";

$(document).ready(function() {
	
	$('#merk_slider').innerfade({
			speed: 'slow',
			timeout: 4000,
			type: 'sequence',
			containerheight: '100px'
	});

	$("a[rel=example_group]").fancybox({
		'transitionIn'		: 'elastic',
		'transitionOut'		: 'elastic',
		'titlePosition' 	: 'over',
		'showNavArrows'		: true,
		'overlayOpacity'	: 0.6, 
		'titleFormat'		: function(title, currentArray, currentIndex, currentOpts) {
			return '<span id="fancybox-title-over">Image ' + (currentIndex + 1) + ' / ' + currentArray.length + (title.length ? ' &nbsp; ' + title : '') + '</span>';
				}
	});	

	$("#krampshop").fancybox({
		'width'				: '75%',
		'height'			: '75%',
        'autoScale'     	: false,
        'transitionIn'		: 'none',
		'transitionOut'		: 'none',
		'type'				: 'iframe'
	});

	$("#krampshop_2").fancybox({
		'width'				: '75%',
		'height'			: '75%',
        'autoScale'     	: false,
        'transitionIn'		: 'none',
		'transitionOut'		: 'none',
		'type'				: 'iframe'
	});

});


function setMainButton(sButton)
{
	sMainButton = sButton;
	document.getElementById('sub_'+sMainButton).style.display='block';
}

function showMenu(sElem,sAction)
{
	if (sAction=='show')
	{
		currentElem = document.getElementById(sElem);
		exe = setTimeout("showSubMenu('show')",300);
	} else {
		exe = clearTimeout(exe);	
	}
}

function showSubMenu(sAction)
{
	if (sAction=='show')
	{
		removeSubMenu();
		currentElem.style.display='block';
	}
}

function removeSubMenu()
{
	for(i=0;i<mainElem.length;i++)
	{
		document.getElementById('sub_'+mainElem[i]).style.display='none';
	}
}

function resetMenu()
{
	showMenu('sub_'+sMainButton,'show');
}
