jQuery(document).ready(function(){
	hashCode = '';
	jQuery('.url').click(function(event){
		
		arrURL = jQuery(this).attr('href');
		arrURL = arrURL.replace(W3FE_BASE_URL,'');
		arrURL = arrURL.split('/');
		
		if(arrURL[1] != '' || arrURL[1] != '#'){
			if(arrURL[1].trim().charAt(0) == '#'){
				event.preventDefault();
				jQuery('.gall_item_block').each(function(){
					hashCode = jQuery(this).val();
					if(hashCode == arrURL[1]){
						jQuery(this).parent('div').slideDown(400,function(){
							jQuery(this).removeClass('hidden');
						});
					}
				});
			}
		}
	});
});
