function openMe(url) {

	//alert(url);
	
	
	jQuery('<a id="lightboxImg" alt="click-enlarge image" rel="lightbox" class="lightbox" href="' + url + '">&nbsp;</a>').appendTo(jQuery('#main'));

	jQuery('#lightboxImg').lightbox( {navbarOnTop: 0 , resizeSpeed: 300 , overlayOpacity: 0.4, strings : { prevLinkTitle: "previous image", nextLinkTitle: "next image", prevLinkText:  "&laquo;&nbsp;&nbsp;", nextLinkText:  "&nbsp;&nbsp;&raquo;",closeTitle: "close", image: "Image", of: "of"}}); 
	jQuery.fn.lightbox.initialize();
	jQuery('#lightboxImg').trigger('click');
	jQuery('#lightboxImg').remove();
	
}




