	function animateItems(){
			$('img.item1').animate({top:"-=2px"},450).animate({top:"+=2px"},450);
			$('img.item3').animate({top:"+=3px"},450).animate({top:"-=3px"},450);
			$('img.item5').animate({top:"+=3px"},450).animate({top:"-=3px"},450);
			$('img.item7').animate({top:"+=2px"},450).animate({top:"-=2px"},450);
			setTimeout("animateItems()",900);
	}
	
	function animateItems2(){
			$('img.item2').animate({top:"+=6px"},600).animate({top:"-=6px"},600);
			$('img.item4').animate({top:"-=4px"},600).animate({top:"+=4px"},600);
			$('img.item6').animate({top:"+=3px"},600).animate({top:"-=3px"},600);
			setTimeout("animateItems2()",1200);
	}
	
	$(document).ready(function(){
		$('#main div.intro').css("background", "url(images/join-the-freedom-revolution-empty.jpg)");
		$('#main div.intro').append('<img class="item1" src="images/intro/dishwasher.png" alt="" /><img class="item2" src="images/intro/grill.png" alt="" /><img class="item3" src="images/intro/cabinet.png" alt="" /><img class="item4" src="images/intro/oven.png" alt="" /><img class="item5" src="images/intro/tap.png" alt="" /><img class="item6" src="images/intro/rack.png" alt="" /><img class="item7" src="images/intro/bath.png" alt="" />');
		animateItems();
		animateItems2();
	});
