$(function(){
    if ( $.browser.msie ) {
        // IE seems to need more time to traverse the DOM
        setTimeout('insertSuccessStoryPicture()', 500);
    }
    else {
        insertSuccessStoryPicture();
    }
}
);

function insertSuccessStoryPicture() {
    var cases     = new Object;
    var theCase   = new Object;
    var nrOfCases = 7;
    
    cases[0] = {
                    url     : 'http://plastics.sabic.eu/cases/_en/customizedsolutions.htm',
                    image   : 'visual_ss_audi.jpg',
                    title   : 'Success Story: SABIC® PP Customized Solutions for bumper production'
                };
    cases[1] = {
                    url     : 'http://plastics.sabic.eu/cases/_en/sewagepipemar.htm',
                    image   : 'visual_ss_pp71ek71ps.jpg',
                    title   : 'Success Story: SABIC® PP 71EK71PS for sewage pipe market'
                };
    cases[2] = {
                    url     : 'http://plastics.sabic.eu/cases/_en/seataltea.htm',
                    image   : 'visual_ss_seat.jpg',
                    title   : 'Success Story: SEAT and SABIC: The SEAT Altea – Tougher by Design'
                },
    cases[3] = {
                    url     : 'http://plastics.sabic.eu/cases/_en/suzukiswift.htm',
                    image   : 'visual_ss_swift.jpg',
                    title   : 'Success Story: SABIC and Suzuki – a Swift Success'
                };
    cases[4] = {
                    url     : 'http://plastics.sabic.eu/cases/_en/sanitarypressu.htm',
                    image   : 'visual_ss_vestolenp9421.jpg',
                    title   : 'Success Story: Proven performance with SABIC® Vestolen P 9421 for sanitary pressure pipes'
                };
    cases[5] = {
                    url     : 'http://plastics.sabic.eu/cases/_en/artificial-grass.htm',
                    image   : 'visual_ss_llpde.jpg',
                    title   : 'Success Story: SABIC® LLDPE in Artificial Grass: A surface you can slide on!'
                };
    cases[6] = {
                    url     : 'http://plastics.sabic.eu/cases/_en/plastic-milk-bottles-go-greener.htm',
                    image   : 'visual_ss_greener_milk_bottles.jpg',
                    title   : 'Success Story: Plastic milk bottles go greener!'
                };

    // Temporarily set milk bottles in the picture !!
    //theCase = cases[ Math.floor(Math.random()*nrOfCases) ];
    theCase = cases[6];
    
    // build HTML success story banner
    var bannerhtml = "<a href='" + theCase["url"] + "'><img src='/_images/visuals/" + theCase["image"] + "' title='" + theCase["title"] + "' alt='" + theCase["title"] + "'" + " /></a>";

    //$("#inthepicture").append(bannerhtml);
    $("#inthepicture").html(bannerhtml);
}
