$(document).ready(function() {
// Navi hover image swap
$('#navi li, #sub_navi li').hover(
 function(){
	 	var imgName = $(this).children().children('img').attr('src');		
		imgName = imgName.split('.');		
		imgName = imgName[0] + '_active.' + imgName[1];

$(this).children().children('img').attr('src', imgName)
},
 function(){
	 	var imgName = $(this).children().children('img').attr('src');		
		imgName = imgName.split('_');		
		imgName = imgName[0] + '.png';	 
	 $(this).children().children('img').attr('src', imgName)
	 }
); 

// Sidebar image / text swap

$('#content h5').click(function (){
				if($('#sidebar').children('.text').is(":hidden"))
				{
					$('#sidebar').children('.text').show();
					$('#sidebar').children('.image').hide();
				}
				else
				{
					$('#sidebar').children('.text').hide();
					$('#sidebar').children('.image').show();
				}
																  
	});

////
});
