jQuery(document).ready(function($){
$(".rotateNewContent").jCarouselLite({
btnNext: ".next",
btnPrev: ".prev",
speed: 800,
visible: 1
})
$(".rotateBestsellerContent").jCarouselLite({
btnNext: ".nextBest",
btnPrev: ".prevBest",
speed: 800,
visible: 1
})
$(".rotateGiftContent").jCarouselLite({
btnNext: ".nextGift",
btnPrev: ".prevGift",
speed: 800,
visible: 1
})
$('button.next')
.bind('mouseover',enter)
.bind('mouseout',exit)
function enter(event){
$('.next').addClass('arrowhover')}
function exit(event){
$('.next').removeClass('arrowhover')}
$('button.prev')
.bind('mouseover',enterleft)
.bind('mouseout',exitleft)
function enterleft(event){
$('.prev').addClass('arrowhoverleft')}
function exitleft(event){
$('.prev').removeClass('arrowhoverleft')}
$('button.nextGift')
.bind('mouseover',enterGift)
.bind('mouseout',exitGift)
function enterGift(event){
$('.nextGift').addClass('arrowhover')}
function exitGift(event){
$('.nextGift').removeClass('arrowhover')}
$('button.prevGift')
.bind('mouseover',enterleftGift)
.bind('mouseout',exitleftGift)
function enterleftGift(event){
$('.prevGift').addClass('arrowhoverleft')}
function exitleftGift(event){
$('.prevGift').removeClass('arrowhoverleft')}
$('button.nextBest')
.bind('mouseover',enterBest)
.bind('mouseout',exitBest)
function enterBest(event){
$('.nextBest').addClass('arrowhover')}
function exitBest(event){
$('.nextBest').removeClass('arrowhover')}
$('button.prevBest')
.bind('mouseover',enterleftBest)
.bind('mouseout',exitleftBest)
function enterleftBest(event){
$('.prevBest').addClass('arrowhoverleft')}
function exitleftBest(event){
$('.prevBest').removeClass('arrowhoverleft')}
$('#pullme').click(function() {
this.blur();
$('#outerBlock').slideToggle('slow', function() {
});
});
$('#pi1').hover(
function (event){
$('#bd1').animate({"top": "4px","height": "200px"}, 2500);
},
function (event){
$('#bd1').animate({"top": "232px","height": "60px"}, 2500);
 });
$('#pi2').hover(
function (event){
$('#bd2').animate({"top": "4px","height": "200px"}, 2500);},
function (event){
$('#bd2').animate({"top": "232px","height": "60px"}, 2500);
 });
 $('#pi3').hover(
 function (event){
 $('#bd3').animate({"top": "4px","height": "200px"}, 2500);},
 function (event){
 $('#bd3').animate({"top": "232px","height": "60px"}, 2500);
  });
})
