$(function() {
	
	$("a[rel=external], a[rel=external nofollow]").attr("target", "_blank");
	
	var count = 1;
	var content = $("#slider p").html();
	var imagesCount = $("#slider img").length;
	var timer = setInterval(slideShow,7000);

	function slideShow() {
		if($("#slider img").length>1) {
			$("#slider p").animate({
				left: '-='+$("#slider img").width()+'px'
				}, 600, function() {
					count++;
					if(count==imagesCount) {
						$(this).append(content);
						count = 0;
					}
			});
		}
	}
	
	$("#main-content table tr:last-child").addClass("last");
	$("#main-content table, .green-box").css({"-moz-border-radius": "8px", "-webkit-border-radius": "8px", "border-radius": "8px"});

});