function menu_show()
{
	jQuery(this).css('background', 'rgb(104, 141, 195)');
	jQuery(this).css('color', 'rgb(255, 255, 255)');
	jQuery(this).find('ul').css('display', 'block');
}

function menu_hide()
{
	jQuery(this).css('background', 'rgb(255, 255, 255)');
	jQuery(this).css('color', 'rgb(104, 141, 195)');
	jQuery(this).find('ul').css('display', 'none');
}

function menu_item_show()
{
	jQuery(this).css('background', 'rgb(104, 141, 195)');
	jQuery(this).css('color', 'rgb(255, 255, 255)');	
}

function menu_item_hide()
{
	jQuery(this).css('background', 'rgb(233, 237, 247)');
	jQuery(this).css('color', 'rgb(104, 141, 195)');
}

jQuery(document).ready(function() {
	jQuery('#menu > ul > li').bind('mouseover', menu_show);
	jQuery('#menu > ul > li').bind('mouseout',  menu_hide);
	jQuery('#menu > ul > li > ul > li ').bind('mouseover', menu_item_show);
	jQuery('#menu > ul > li > ul > li ').bind('mouseout',  menu_item_hide);
});

jQuery(function() {
	jQuery("#classsss").fancybox();
});
