var KDSite = function ()
{
	this.init();
};

KDSite.prototype = {
	init : function () {
		// Initialize the tiles		
		$('#logo-grid').tiles({
			autoPlayDelay:5000,
			tilesContainer:'#tiles', 
			startIndex:$("#logo-grid li").length-1, 
			autoPlay:true,
			preloadTileImages:true,
			logoId:"#company-logo > a"});
		
		// Resize Logos Container
		//var numLogos = ($("#logo-grid").children().length-1);
		//var padding = 40;
		//$("#main-content").css("width",(numLogos*106)+padding);
		
	if (window.PIE) {
        $('.rounded-box2').each(function() {
            PIE.attach(this);
        });
    }	

	}
}

jQuery(document).ready(function ($){
	new KDSite();
})
