/* 
 * JS to enhance the UI on mobile devices
 */

jQuery(document).ready(function() {

    if($('.navigation').css('position')=='absolute') {
        // This should only apply if we are using the handheld stylesheet
        $('body').append($('.navigation'));
    }
});

