(function($) {
	$(document).ready(function() {
		
		$('.subMenu').find('li').click(function(){
			location.href = $(this).find('a').attr('href');
		});
	
	});
})(jQuery);

