jQuery(document).ready(function() {
$('#FlexiHeader').insertBefore('#FlexiMain');
$('#photoframe').cycle({
  delay:  5000, 
    speed:  1000, 
    before: onBefore 
}); 
 
function onBefore() { 
    $('#imagetitle') 
        .html(this.alt); 
}; 	
});