function last_m_next() {
	var api = $(".lasts").scrollable({
		size:8, 
		api:true, 
		loop: true,
		items:".last_content"});
	api.move(2);
}

$(document).ready(function() {
	$(".eraseme").focus(function() {
		$(this).val("");
	});
	$(".eraseme").blur(function() {
		if ($(this).val() == "")
			$(this).val($(this).attr("rel"));
	});
	$(".lightbox").lightBox();
	$("button").click(function() {
		document.location = $(this).attr("rel");
	});
	var api = $(".lasts").scrollable({
		size:8, 
		api:true, 
		loop: true,
		items:".last_content"});
	if (api) {
		setInterval("last_m_next()", 5000)
	}
});

