var partnerImages = [
    { image: 'logo_rotation_AKTI.png', link: '/partners.php?brand=kershaw', title: '' },
    { image: 'kershawSponsors_02.jpg', link: '/partners.php?brand=kershaw', title: '' },
    { image: 'kershawSponsors_03.jpg', link: '/partners.php?brand=kershaw', title: '' },
    { image: 'kershawSponsors_04.jpg', link: '/partners.php?brand=kershaw', title: '' },
    { image: 'kershawSponsors_05.jpg', link: '/partners.php?brand=kershaw', title: '' },
    { image: 'kershawSponsors_06.jpg', link: '/partners.php?brand=kershaw', title: '' },
    { image: 'kershawSponsors_07.jpg', link: '/partners.php?brand=kershaw', title: '' },
    { image: 'kershawSponsors_09.jpg', link: '/partners.php?brand=kershaw', title: '' },
    { image: 'kershawSponsors_10.jpg', link: '/partners.php?brand=kershaw', title: '' },
    { image: 'kershawSponsors_11.jpg', link: '/partners.php?brand=kershaw', title: '' },
    { image: 'kershawSponsors_12.jpg', link: '/partners.php?brand=kershaw', title: '' },
    { image: 'kershawSponsors_13.jpg', link: '/partners.php?brand=kershaw', title: '' },
    { image: 'kershawSponsors_14.jpg', link: '/partners.php?brand=kershaw', title: '' },
    { image: 'kershawSponsors_15.jpg', link: '/partners.php?brand=kershaw', title: '' },
    { image: 'kershawSponsors_16.jpg', link: '/partners.php?brand=kershaw', title: '' },
    { image: 'kershawSponsors_17.jpg', link: '/partners.php?brand=kershaw', title: '' },
    { image: 'kershawSponsors_18.jpg', link: '/partners.php?brand=kershaw', title: '' },
    { image: 'kershawSponsors_19.jpg', link: '/partners.php?brand=kershaw', title: '' },
    { image: 'kershawSponsors_20.jpg', link: '/partners.php?brand=kershaw', title: '' },
    { image: 'kershawSponsors_21.jpg', link: '/partners.php?brand=kershaw', title: '' },
    { image: 'kershawSponsors_22.jpg', link: '/partners.php?brand=kershaw', title: '' },
    { image: 'kershawSponsors_42.jpg', link: '/partners.php?brand=kershaw', title: '' },
    { image: 'kershawSponsors_43.jpg', link: '/partners.php?brand=kershaw', title: '' },
    { image: 'kershawSponsors_44.jpg', link: '/partners.php?brand=kershaw', title: '' },
    { image: 'kershawSponsors_45.jpg', link: '/partners.php?brand=kershaw', title: '' },
    { image: 'kershawSponsors_46.jpg', link: '/partners.php?brand=kershaw', title: '' },
    { image: 'kershawSponsors_47.jpg', link: '/partners.php?brand=kershaw', title: '' },
    { image: 'kershawSponsors_48.jpg', link: '/partners.php?brand=kershaw', title: '' },
    { image: 'kershawSponsors_50.jpg', link: '/partners.php?brand=kershaw', title: '' },
    { image: 'kershawSponsors_51.jpg', link: '/partners.php?brand=kershaw', title: '' },
    { image: 'kershawSponsors_52.jpg', link: '/partners.php?brand=kershaw', title: '' },
    { image: 'kershawSponsors_53.jpg', link: '/partners.php?brand=kershaw', title: '' },
    { image: 'kershawSponsors_54.jpg', link: '/partners.php?brand=kershaw', title: '' },
    { image: 'kershawSponsors_55.jpg', link: '/partners.php?brand=kershaw', title: '' },
    { image: 'kershawSponsors_56.jpg', link: '/partners.php?brand=kershaw', title: '' },
    { image: 'kershawSponsors_57.jpg', link: '/partners.php?brand=kershaw', title: '' },
    { image: 'kershawSponsors_58.jpg', link: '/partners.php?brand=kershaw', title: '' },
    { image: 'kershawSponsors_59.jpg', link: '/partners.php?brand=kershaw', title: '' }
];

partnerImages.sort(function() {return 0.5 - Math.random()}); // randomize order

var partnerCounter = 0;
var timer;

function setBgColor(id, bgcolor) {
    if (document.getElementById) {
        document.getElementById(id).style.backgroundColor = bgcolor;
    }
}

function newWindow(goto, w, h) {
	myobj=window.open(goto,'mywin','toolbar=0,location=0,status=0,menubar=0,scrollbars=0,resize=1,width=' + w + ',height=' + h + '');
	myobj.moveTo(0,0);
	myobj.focus();
}

function popupWindow(goto, w, h, name) {

    width = parseInt(w);
    height = parseInt(h);

    if (!width)
        width = 800;

    if (!height)
        height = 600;

	if (!name)
		name = 'newWindow';
		
    return window.open(goto, name, 'width='+width+', height='+height+', toolbar=no, status=no, scrollbars=no, resizable=no, menubar=no, location=no, direction=no');
}

function changePartnerImage() {
    
    if(timer) {
        clearTimeout(timer);
    }
    
    if($('#rotating-partners-container #partner').length <= 0) {
        return false;
    }
    
    if($('#rotating-partners-container #partner').is(':visible')) {
        $('#rotating-partners-container #partner').fadeOut('slow', function() {
            setPartnerImage();
        });
    }
    else {
        setPartnerImage();
    }
}
function setPartnerImage() {
    $('#rotating-partners-container img#partner').attr('src', '/images/partners/' + partnerImages[partnerCounter].image);
    $('#rotating-partners-container a#partner-link').attr('href', partnerImages[partnerCounter].link);
    $('#rotating-partners-container a#partner-link').attr('title', partnerImages[partnerCounter].title);
    $('#rotating-partners-container img#partner').attr('alt', partnerImages[partnerCounter].title);
}


$(document).ready(function() {
    $('#rotating-partners-container').append('<a id="partner-link" title=""><img id="partner" alt="" border="0" /></a>');
    $('#rotating-partners-container #partner').load(function() {
        $(this).fadeIn('slow');
        partnerCounter++;
        if(partnerCounter >= partnerImages.length) {
            partnerCounter = 0;
        }
        timer = setTimeout(changePartnerImage, 3000);
    });
    timer = changePartnerImage();
});

