$(document).ready(function($) {
//--------------------------------------------------
// HOME MENU
//--------------------------------------------------
	$('ul#home_menu li.main').hover( function() {
		$(this).addClass('hover');
		$(this).children('ul.sub').show();
	}, function() {
		$(this).removeClass('hover');
		$(this).children('ul.sub').hide();
	});
});