// JavaScript Document



// Slideshow


img_current = 1;

$(function(){
	$("#img").css("background", "url(images/slideshow/slide1.jpg)");
	autoRotate = setInterval("newimg('auto')", 6000);
});

function newimg(img)
{
    if ('auto' == img)
    {
	    var total_images = 6;
		/*
	    var bg = $("#img").css("background");
	    var pos = bg.indexOf(".jpg") - 1;
		var img_num = parseInt(bg.charAt(pos));
		*/
		img_num = img_current;
		if (img_num == 6)
		{
		    img_num = 1;
		}
		else
		{
		    img_num = (Number(img_num) + 1);
		}
		img_current = img_num;
	}
	else
	{
		img_current = img;
	}
    $("#img").fadeOut("slow",function(){
		$("#img").css("background","url(images/slideshow/slide"+img_current+".jpg)");
		$("#img").fadeIn("slow");
    });
}



// Quotes

var Quotation = new Array();

Quotation[0] = "<div class=quote>The air conditioning apprenticeship school is the crucial differentiator that delivers competent, skilled craftsmen to our industry.</div><div class=quoteAuthor>Mark Kerney - Hill York Service Corporation</div>";
Quotation[1] = "<div class=quote>I am happy to be part of an organization that is a leader in our industry.  Our apprentices graduate certified and licensed in all facets of the Air Conditioning and Pipefitting field.</div><div class=quoteAuthor>Phil Rodin - Director of Education, ARPEC</div>";
Quotation[2] = "<div class=quote>We provide service to large commercial and industrial air conditioning systems and because the A/C School consistently provides us with highly qualified technicians is why we are a Union Contractor!</div><div class=quoteAuthor>Larry Means -  President, Southeastern Chiller Services</div>";
Quotation[3] = "<div class=quote>As a contractor, I can trace the roots of my success back to the training that I received at the LU 725 apprenticeship school. The dedication and high level of training that I received from the school and the staff have provided me with the knowledge and skills necessary to become a qualified journeyman, an instructor and ultimately a licensed contractor. I would highly recommend the school to any motivated individual would like to excel in the air conditioning field. </div><div class=quoteAuthor>Kenny Daniels - Owner, Advanced Integrated Service</div>";
var Q = Quotation.length;
var whichQuotation = Math.round(Math.random()*(Q-1));
function showQuotation()
{
    document.write(Quotation[whichQuotation]);
}



//Twitter Status

 function twitterCallback(o) {
	o = o[0]; // o is always an array, so just get the first (and only entry)
	var e = document.getElementById('twitterfaves');
	e.innerHTML = o.text;
	e.href = 'http://twitter.com/snookca/status/' + o.id;
}
