/*
 * tellibus - Integrated Business Solutions
 * http://www.tellibus.com
 *
 * Copyright (c) 2010 Abdelaziz Bennouna for tellibus
 *
 * Modified by Abdelaziz Bennouna - 2010-03-15 for tellibus.com
 * 
 */

$(document).ready(function () {
	// preload slide images
	var img = ['Pre_Sales_Strategy.jpg', 'Groupware.jpg', 'Content_Management.jpg'];
	$(img).each(function () {
		var i = new Image();
		i.src = 'sldshwpx/' + this;
	});

	// initialize the slideshow
    $('#slideshow').cycle({
        timeout: 6000,
        next: '#slideshow-next',
        prev: '#slideshow-prev',
        pause: 1
    });

	// initialize clear fields (for the contact form)
    $('.clearField').clearField();
});
