$(function()
{

    $('#screens a').lightBox();

});

$(function() {

	var $tabs = $('.tabs_pages').tabs();
	
	$(".ui-tabs-panel").each(function(i)
	{
	
		var totalSize = $(".ui-tabs-panel").size() - 1;
		
		if (i != totalSize)
		{
		
			next = i + 2;
			$(this).append("<a href='#' class='button_next mover' rel='" + next + "'>&#187;</a>");
		
		}
		
		if (i != 0)
		{
		
			prev = i;
			$(this).append("<a href='#' class='button_prev mover' rel='" + prev + "'>&#171;</a>");
		
		}
	
	});
	
	$('.button_next, .button_prev').click(function()
	{ 
	
		$tabs.tabs('select', $(this).attr("rel"));
		return false;
	
	});

});
