$( document ).ready( function() {

	if ($("#sideNavigation li").length == 0)
	{
		$("#sideNavigation").addClass("hidden");
	}

	if ( $( '#mainSectionID' ).val() == 3 || $( '#mainSectionID' ).val() == 2 || $( '#mainSectionID' ).val() == 4  )  {
		
		$( '#sideNavigation .bottom' ).hide();
		
		$( '#sideNavigation' ).attr( 'id', 'sideNavigationServices' );
		$( '#cloak' ).show();
	}
	else {
		$( '#image_repeater' ).show();
	}
	
	$("#cloak a").mouseover( function() {
		$( this ).parent( 'li' ).addClass( 'hovered' );
		//alert( 'hovered' );
	});
	$("#cloak a").mouseout( function() {
		$( this ).parent( 'li' ).removeClass( 'hovered' );
	});
	
	$(".top a").mouseover( function() {
		$( this ).parent( 'li' ).addClass( 'hovered' );
		//alert( 'hovered' );
	});
	$(".top a").mouseout( function() {
		$( this ).parent( 'li' ).removeClass( 'hovered' );
	});
	/*
	$( '#sideNavigationServices li' ).click( function() {
		var address = $( this ).children( 'a' ).attr( 'href' );
		window.location = address;
	});
	*/
	
});