$(document).ready(function(){

	$('#left-nav li').hover(
	
		function(){
			$(this).addClass("active");
			$(this).find('ul:first').show();
		},
		
		function(){
			$(this).removeClass("active");
			$(this).find('ul:first').hide();
		}
	)
	
	$('.inner-content').each(function(){
	
		linkUrl = $(this).find('h2 a').attr("href");
		if (linkUrl) {
			$(this).css("cursor", "pointer");
		}	
	})
	
	
	
	$('.inner-content').click(function(){
		
		linkUrl = $(this).find('h2 a').attr("href");
		
		if (linkUrl) {
			
			window.location = linkUrl;
		}
	
	})


})
