var current_image = 0;
$(document).ready(function() {

	$("#hiNext").click(function(){
		current_image = Math.min($("#homeImagesSlide img").length-1,++current_image);
		slideImageTo(current_image);
		return false;
	});
	
	$("#hiPrev").click(function(){
		current_image = Math.max(0,--current_image);
		slideImageTo(current_image);
		return false;
	});
	
	$("#mce-EMAIL").placeHoldize();
	
});


function slideImageTo(here) {
	$("#homeImagesSlide img:first").clearQueue();
	$("#homeImagesSlide img:first").animate({
//		marginLeft: $("#homeImagesSlide img")[0].innerWidth() * -current_image
		marginLeft: 484 * -current_image
	},'slow');
	
}
