var loader_gif = assets_url +'images/loader.gif';

$(document).ready( function( ){
	
	$(".city-pointer").click(function()
	{
		$(".city-pointer.active").removeClass( 'active' );
		$(this).addClass( 'active' );
		
		var cityID = $(this).attr( 'href' ).substr( $(this).attr( 'href' ).lastIndexOf( '/' )+1 );
		$("#distributors").load( base_url +'distributors/city/'+ cityID, { loader : { uri: loader_gif } } );

		return false;
	});
	
	$("#sidebar-left .menu ul").hide(  );
	
	$("#sidebar-left .menu li > a").click(function(){
		$(this).parent( ).children( "ul" ).toggle( );
	})
});