﻿///<reference path="jquery-1.3.2-vsdoc2.js" />
$(document).ready(function() {
    if ($('body.home').length) {
        CreateSlideShow();
    }
});

function CreateSlideShow(){ 
   
    var flashvars = {};
    flashvars.xmlURL = "/wp-content/assets/xml/galleries/com.technicomav.homepage.slideshow.xml" + cacheBuster();
    var params = {};
    params.wmode = "transparent";
    params.menu = "false";
    params.allowScriptAccess = "always";
    var attributes = {};
    swfobject.embedSWF("/wp-content/assets/flash/galleries/TechnicomSlideShow.swf", "flash-slideslow-content", "900", "317", "9.0.0", "false", flashvars, params, attributes);

}

function cacheBuster() {
    var junk = new Date().getTime();
    return "?r=" + junk;
}

