$(document).ready(function(){

	lightbox();
  
	$('#pagenav').hide();
	$('#loadmore').show();
  
});

function getmoreposts(type)
{
	$('#loadmore').fadeOut("normal",function(){
		$('#loader').html('<img style="vertical-align:"middle;" src="/images/lightbox/loading.gif"/>&nbsp;&nbsp;Loading...').fadeTo(600,1,function(){
			$.post("/updates/ajax/" + type + "/" + $(".update-entry:last").attr("id"),   
					 
				    function(data){
				        if (data != "") {
				        	$(".update-entry:last").after(data);           
				        }
				        lightbox();
				        $('#loader').empty();
				    });
		});
		
	});
	
    
};

function lightbox(){
	
	$('.lightbox').lightBox({
		overlayBgColor: '#000',
		overlayOpacity: 0.6,
		imageLoading: '/images/lightbox/loading.gif',
		imageBtnClose: '/images/lightbox/close.gif',
		imageBtnPrev: '/images/lightbox/prev.gif',
		imageBtnNext: '/images/lightbox/next.gif',
		containerResizeSpeed: 250,
		txtImage: 'Image',
		txtOf: 'of'
	   });
	
}
