$(function() {
$('#referenceBG ul').cycle({
    fx:     'scrollHorz',
    speed:    300, 
    timeout:  5000 
    });
});


 $(function() {
        RandomPhoto();
  });
function RandomPhoto() {

    if(((document.location).toString()).indexOf("en-US") > 0){ 
    var mypics = ['/Content/images/faraoEN_header_img1.jpg',
        '/Content/images/faraoEN_header_img2.jpg',
        '/Content/images/faraoEN_header_img3.jpg',
        '/Content/images/faraoEN_header_img4.jpg',
        '/Content/images/faraoEN_header_img5.jpg',
        '/Content/images/faraoEN_header_img6.jpg',
        '/Content/images/faraoEN_header_img7.jpg'];    
    }else{
    var mypics = ['/Content/images/farao_header_img1.jpg',
        '/Content/images/farao_header_img2.jpg',
        '/Content/images/farao_header_img3.jpg',
        '/Content/images/farao_header_img4.jpg',
        '/Content/images/farao_header_img5.jpg',
        '/Content/images/farao_header_img6.jpg',
        '/Content/images/farao_header_img7.jpg'];   
    } 
    var myDiv = document.getElementById('header');
    var pic = Math.floor(Math.random() * mypics.length);
    myDiv.style.backgroundImage = 'url(' + mypics[pic] + ')';
}
