var is_displaying = false;
function showPrices()
{        

	if (!is_displaying)
	{                
		is_displaying = true;
		$('#prices').show();
		$('#text_body').hide();		
	}
	else                      
	{                      
		is_displaying = false;		
		$('#prices').hide();
		$('#text_body').show();				
	}
}

$(document).ready(function()
{
	$(document).pngFix();
	
	$('#mycarousel').jcarousel({
        scroll: 2
    });
    
	/*var so = new SWFObject("swf/logo.swf", "Logo", "500", "100", "7", "#fff");
	so.write("logo");*/
		
/*	$('#menu > ul > li').hover(
        function(){$(this).children('ul').show();}, 
        function(){$(this).children('ul').hide();}
    );	*/
	
    $('#menu ul li ul').hover(
        function(){$(this).parent().children('a').addClass('over').children('span').addClass('over');}, 
        function(){$(this).parent().children('a').removeClass('over').children('span').removeClass('over');}
    );
        
    if ($.browser.msie && $.browser.version <= 6)
	{	
	    $('#menu ul li').hover(
	        function(){$(this).children('ul').show();}, 
	        function(){$(this).children('ul').hide();}
	    );
	}

	

	

});

function endLoad()
{
	$('.box').each(function(){
		if ($(this).parent().parent().parent().parent().attr('class') == 'boxContainer')
		{
			$(this).css('minHeight', $(this).parent().parent().parent().parent().height() - 77);
		
			if ($.browser.msie && $.browser.version <= 6)
			{
				$(this).height($(this).parent().parent().parent().parent().height() - 77);
			}
		}
	});
}