$(document).ready(function() {

	$("ul.menu li ul").hover(
		function () {
			$(this).parent().addClass('hover');
		}, 
		function () {
			$(this).parent().removeClass('hover');
	});

	
	$('a[rel*=facebox]').facebox({
        loading_image : 'loading.gif'
      });
	

});

