// JavaScript Document
$('document').ready(function(){

// this is the bit that changes the position of the header
var contm = $('#headerold').html();
$('#headerold').remove();
$('#headhere').html(contm);
$('#headhere').slideDown('slow');

$('#slider').nivoSlider({
effect:'random',
slices:15,
animSpeed:500,
pauseTime:3000,
startSlide:0, 
directionNav:false, 
controlNav:false, 
directionNavHide:true, 
keyboardNav:true, 
pauseOnHover:true, 
manualAdvance:false, 
captionOpacity:0.8
});

});
