$(function() {
   $('#menu li').append('<img src="img_s/menu_strip.jpg" class="menu_strip" />');
   $('#menu li a').not('#menu li.current a').hover(function() {
        $(this).parent().css('backgroundPosition', '49% -160px');
   }, function() {
        $(this).parent().css('backgroundPosition', '0 -80px');
   });
   $('#socialmedia img').css('opacity', 0.7);
   $('#page div:odd').not('.no-zebra').addClass('zebra');
   $('#page table tr:odd').addClass('zebra')
   $('#socialmedia img').hover(function() {
        $(this).animate({'opacity': 1});
   }, function() {
        $(this).animate({'opacity': 0.7});
   });
   $("#twitter div").tweet({
            username: "emmgryner",
            join_text: "auto",
            //avatar_size: 32,
            count: 10,
            auto_join_text_default: "emm said,",
            auto_join_text_ed: "emm",
            auto_join_text_ing: "emm was",
            auto_join_text_reply: "emm replied to",
            auto_join_text_url: "emm was checking out",
            loading_text: "loading tweets..."
        });
   $('#order_images').cycle({
      delay:  550,
      speed:  400
   });
   $('#pics').cycle({
      delay:  1500,
      speed:  700
   });
   $('#paypal li').bind('mouseenter mouseleave mousedown', function(e) {
   		switch(e.type) {
   			case 'mouseenter': $(this).css('backgroundPosition', '0 -40px');
   			break;
   			case 'mouseleave': $(this).css('backgroundPosition', '0 0');
   			break;
   			case 'mousedown': $(this).css('backgroundPosition', '0 -80px');
   			break;
   		};
   });

});

