// JavaScript Document
$(document).ready(function(){
	
	
	//playing moving stars
	var moving = 'right';
	move_stars();
	function move_stars(){
		var pixels = '';
		if(moving == 'right'){
			moving = 'left';
			pixels = '250px';
		}else{
			pixels = '0px';
			moving = 'right';
		}
		$('#bg_top').animate({ backgroundPosition:pixels }, 8000);
		setTimeout(move_stars,8000);
	}
})
