function $importJsc(src){
var scriptElem = document.createElement('script');
scriptElem.setAttribute('src',src);
scriptElem.setAttribute('type','text/javascript');
document.getElementsByTagName('head')[0].appendChild(scriptElem);
}

/*// import with a random query parameter to avoid caching
function $importNoCache(src){
var ms = new Date().getTime().toString();
var seed = "?" + ms; 
$importJs(src + seed);
}

$importJsc("include/jquery-1.6.1.min.js");
$importJsc("include/jquery.cross-slide.min.js");
*/

var blank = new Image();
blank.src = 'images/blank.gif';

$(document).ready(function() {
    var badBrowser = (/MSIE ((5\.5)|6)/.test(navigator.userAgent) && navigator.platform == "Win32");
    if (badBrowser) {
        // get all pngs on page
        $('img[src$=.png]').each(function() {
            if (!this.complete) {
                this.onload = function() { fixPng(this) };
            } else {
                fixPng(this);
            }
        });
    }
});


$(function() {
    $('#top-ugg-div').crossSlide({
        sleep: 5, 
        fade: 1
      //speed: 45
  }, [

  //  { src: 'images/mainbaner/boots1.jpg', href:"http://www.uggbootsmadeinaustralia.com.au/"	},
  {src: 'images/mainbaner/01_Top_SaleNowOn.png', href: "http://www.uggbootsmadeinaustralia.com.au/" },
  { src: 'images/mainbaner/01_Top_All-Stock.png', href: "http://www.uggbootsmadeinaustralia.com.au/" },
 /* { src: 'images/mainbaner/ModernAustralianStyle.png', href: "http://uggbootsmadeinaustralia.com.au/Ugg_Boots_New_Arrivals.aspx" },*/
  { src: 'images/mainbaner/03_Top_AustralianSheepskin.png', href: "http://www.uggbootsmadeinaustralia.com.au/" }
 ])
});

