$(document).ready(function () {
	
	// Font replacement
	Cufon.replace('.title');
	Cufon.replace('#header_sub h1');
	
	// Menu hover effect
	$('.menu li').hover(
		function () { 
			$(this).find('ul:first').css({'left': 'auto'});
		}, 
		function () {
			$(this).find('ul:first').css({'left': '-9999px'}); 
		}
	);	
	$('.menu ul ul').hover(
		function () {
			$(this).parent().find('a:first').css({'backgroundColor': '#' + $.cookie('glamorous_color')});
		}, 
		function () {
			$(this).parent().find('a:first').css({'backgroundColor': ''});
	});	
	
	// Submenu hover
	$('#content .box .list li a').hover(
		function () { 
			$(this).css({'color': '#' + $.cookie('glamorous_color') });
		}, 
		function () {
			$(this).css({'color': '#666666' });
		}
	);	
});





