// JavaScript Document - By Eric Neiner, GIE Media 6/2011

$(document).ready(function(){
	$(".freeshipping").hover(function() {
		$(this).attr("src","images/free-shipping-rotated.png");
			}, function() {
		$(this).attr("src","images/free-shipping.png");
	});
	
	$(".ticket").hover(function(){
    	$(this).stop().animate({top:"-10px"},"slow");
  			}, function() {
		$(this).stop().animate({top:"-170px"},"slow");
  	});
});




