$(document).ready(function(){
// creates nav for the promo container
$('.slider-container')
.after('<a id="prev2" href="#">Previous</a><a id="next2" href="#">Next</a>')
 .cycle({ 
    // cleartype:  1, // enable cleartype corrections 
    fx:     'scrollHorz',  
    speed:   1500,
    timeout: 7500, 
    pause:   1, 
	next:   '#next2', 
    prev:   '#prev2' 
});


//for shipping clickable block and rollover effects
$("#shipping").click(function(){
    	window.location=$(this).find("a").attr("href");return false;
	});
	
$("#shipping").hover(function(){
     $("p.shipping a").addClass("highlight");}
     ,function(){
     $("p.shipping a").removeClass("highlight");
   });
   
	
//for three for two clickable block and rollover effects
$("#three-for-two").click(function(){
    	window.location=$(this).find("a").attr("href");return false;
	});
$("#three-for-two").hover(function(){
     $("p.three-for-two a").addClass("highlight-center");}
     ,function(){
     $("p.three-for-two a").removeClass("highlight-center");
   });
	
//for gift packs clickable block and rollover effects
$("#gift-packs").click(function(){
    	window.location=$(this).find("a").attr("href");return false;
	});
	
$("#gift-packs").hover(function(){
     $("p.gift-packs a").addClass("highlight");}
     ,function(){
     $("p.gift-packs a").removeClass("highlight");
   });
	
$("#email-offer").click(function(){
    	window.location=$(this).find("a").attr("href");return false;
	});
	
});




