$(document).ready(function() {


    /* 51 and telegraph sub menu for IE fix */
    $("#telegraph51_header_nav ul li:hover").hover(function() { //Hover over event on list item
    		$(this).find("ul").show(); //Show the subnav
    	} , function() { //on hover out...
    		$(this).find("ul").hide(); //Hide the subnav
    });


    /* Rotate CityLab stuff */
    $('#didyouknow').innerfade({
        animationtype: 'slide',
        speed: 250,
        timeout: 10000,
        type: 'random_start',
        containerheight: '25px'
    });


});

function changeStation(dropdown)
{
   var index  = dropdown.selectedIndex;
   var value = dropdown.options[index].value;
   window.location = 'http://barthood.org/'+value+'/';
   return true;
}
