$(document).ready(function() {

	
	$('#cart').hover(function()
		{
 		 $(this).attr("src", "/img/cart0_01.gif");
		}, function() {
 		 $(this).attr("src", "/img/cart_01.gif");
	});
	
	$('#status').hover(function()
		{
 		 $(this).attr("src", "/img/cart0_02.gif");
		}, function() {
 		 $(this).attr("src", "/img/cart_02.gif");
	});
	
	$('#pics').cycle({ 
		fx: 'fade',
		speed: 2500,
		timeout: 2000,
		pause: 1
	});
});
