﻿$(document).ready(function(){
    var SwitchImageInterval = setInterval ( "SwitchIntroImage()", 5000 );
});

function SwitchIntroImage(){
    
    if($('a.IntroImage_BB').css("display") != "none"){
        $('a.IntroImage_BB').hide();
        $('a.IntroImage_iPhone').show();
        
    }
    else if(($('a.IntroImage_iPhone').css("display") != "none")){
        $('a.IntroImage_iPhone').hide();
        $('a.IntroImage_BB').show();
    }
    else{
        //Do nothing
    }
    
}
function ShowiPhone(){
    setTimeout("$(\'a.IntroImage_iPhone\').fadeIn(\'slow\');", 1500);
}
function ShowBB(){
    setTimeout("$(\'a.IntroImage_BB\').fadeIn(\'slow\');", 1500);
}