$(document).ready(function()
{
	/*$('.nav-2 li').each(function(){
		$(this).children('ul').hide();
	});
	
	$('.nav-2 li').hover(
		function(){
			$(this).children('ul').css('overflow', 'visible');
			$(this).children('ul').slideDown();
		}, function(){
			$(this).children('ul').css('overflow', 'hidden');
			$(this).children('ul').slideUp();
		}
	);*/
	$('#cheese_sub').hide();
	$('#cheese_nav').hover(
		function(){
			$('#cheese_sub').slideDown();
		},
		function(){
			$('#cheese_sub').slideUp();
		}
	);
});

function hovers(id)
{
	var id = id.split('_');
	
	$('#hov' + id[1]).css('opacity', '1');
}

function hovers2(id)
{
	var id = id.split('_');
	
	if(/^Microsoft Internet Explorer/.test(navigator.appName))
	{
		$('#hov' + id[1]).css('filter', 'alpha(opacity=75)');
	}
	else
	{
		$('#hov' + id[1]).css('opacity', '.75');
	}
}