function showGalleryImg(id, dir) {

		if (dir==0) {
			
		  $("ul#galimages li").each(function(i, el) {
		  	 $("#"+el.id).attr('class', '') ;
		  });
	  
		  // $("ul#galimages li a").each(function(i, el) {	  });
	  
			var img_src = $("#image_"+id).attr('href') ;
			$("#image_gal").attr('src', img_src);
			$("#liImg_"+id).attr('class', 'a') ;
			$("#curImage").val(id) ;
			
		} else {
			id = parseInt($("#curImage").val()) + parseInt(dir);
			if ($("#image_"+id)) {
				
				if ($("#image_"+id).length>0) {
					var img_src = $("#image_"+id).attr('href') ;
					
				  $("ul#galimages li").each(function(i, el) {
				  	 $("#"+el.id).attr('class', '') ;
				  });
			  
				  // $("ul#galimages li a").each(function(i, el) {	  });
		
					$("#image_gal").attr('src', img_src);
					$("#liImg_"+id).attr('class', 'a') ;
					$("#curImage").val(id) ;
				}
			}
		}
		
		return false;
}


function confirmDelete(msg)
{
    if (msg===undefined) msg='Are you sure?';
    var agree=confirm(msg);
    if (agree)
        return true;
    else
        return false;
}
   