/*function sleep(timeout) {
        var loop = true;
        var current = new Date();
        var now;
        var cTimestamp = current.getTime();

        while(loop) {
                now = new Date();
                nTimestamp = now.getTime();

                if(nTimestamp - cTimestamp > timeout) {
                        loop = false;
                }
        }

} */

function show_list(x) {
	$('#header').find('span').css('background-image', 'url(templates/home/arrow_r.gif)');
	$('#arrow'+x).css('background-image', 'url(templates/home/arrow_b.gif)');
	//$('#header2').find('ul').hide(300);
	$('#header2 > ul[@class*=submenu]').hide(330);
	$('.submenu'+x).show(330);
}

function show_sub(x) {
	//alert(x);
	$('#sub'+x).toggle(130);
}
