	 $(document).ready(function() {

		// 	navigation redirects
		$('#nav_home').click(function(){
		   document.location.href= $('#nav_home a').attr('href');
		})	
		$('#nav_about').click(function(){
		   document.location.href= $('#nav_about a').attr('href');
		})
		
		$('#nav_custcare').click(function(){
		   document.location.href= $('#nav_custcare a').attr('href');
		})
		
		$('#nav_contact').click(function(){
		   document.location.href= $('#nav_contact a').attr('href');
		})
		
		$('#nav_testi').click(function(){
		   document.location.href= $('#nav_testi a').attr('href');
		})		

		// navigation pointer behavior
		$('#nav_menu ul li').mouseover(function() {
			$(this).css("cursor", "pointer");
			$(this).css("background-position", "left");
			jQuery("a", this).css("color", "#000");			
		});		

		$('#nav_menu ul li').mouseout(function() {
			$(this).css("cursor", "pointer");
			$(this).css("background-position", "right");
			jQuery("a", this).css("color", "");
		});	

		// ie fix
		$('#nav_menu ul li.active').mouseout(function() {
			$(this).css("background-position", "left");
		});	
		
		// section behaviors. pointer and background
		$('#section_navigation ul li').mouseover(function() {
			$(this).css("background-position", "left");
			$(this).css("cursor", "pointer");
		});

		$('#section_navigation ul li').mouseout(function() {
			$(this).css("background-position", "right");

		});

		// section redirects. 
		$('#section_one').click(function(){
		   document.location.href= $('#section_one a').attr('href');
		})
		$('#section_two').click(function(){
		   document.location.href= $('#section_two a').attr('href');
		})
		$('#section_three').click(function(){
		   document.location.href= $('#section_three a').attr('href');
		})		
		
		// sidebar navigation
		
		$('.sidebar_list_middle ul li').mouseover(function(){
			jQuery("a", this).css("color", '#0a3976' );		
			$(this).css("cursor", "pointer");
		})
		$('.sidebar_list_middle ul li').mouseout(function(){
			jQuery("a", this).css("color", '#5e8cc7' );
			$(this).css("cursor", "default");
		})	
		$('.sidebar_list_middle ul li').click(function(){
			if( '_blank' == jQuery("a", this).attr('target') ){
				window.open( jQuery("a", this).attr('href') );
				return false;
			}
			else {
				document.location.href= jQuery("a", this).attr('href');	
			}
		})		
	});
