var total_count=0;
$(document).ready(docReadyhome);
function docReadyhome(){
	
    $("#left").click(moveleft);
    $("#right").click(moveright);
	}
function moveright(){
	
	if(total_count<total_images-3)
	{
		total_count++;
		total=total_count*129;
		
	
	//$("#div_gallery").animate({"left": total+'px'}, 200);
	$("#div_gallery").animate({"left": "+=129px"}, "fast");
	}
}	
function moveleft(){
    
	count=$("#div_gallery").css("left");
	count=count.split("p");
	
	count_limit=parseInt(count[0]);
	if(total_count>0)
	{
		total_count--;
	$("#div_gallery").animate({"left": "-=129px"}, "fast");
	}
}	
	

