$(document).ready(function(){
	$('.top-menu .rel').hover(
	function() {
		$(this).addClass("cur");
	   $(this).find(".sub").css('display', 'block');
	},
	function() {
		$(this).removeClass("cur");
		$(this).find(".sub").css('display', 'none');
	}
	);
});




