
		$(function(){

 // ***
 // Scrolling background
 // ***


 var pos = 0;


 

 function scrollbackground() {
 // decrease the offset by 1, or if its less than 1 increase it by the background height minus 1
 	pos--;
 // apply the background position
 $('#clouds').css("background-position",   pos + "px 0");
 // call self to continue animation
 }

// Start the animation
setInterval(scrollbackground, 50);
				   } )
		
		$(function(){
				   	$('#logo').css('top', '-200px').animate({'top' : '90px'}, 5000);
				   });
				   
				   //rounded border
				   DD_roundies.addRule('.inline', '100px 100px 100px 100px', true);

