$(document).ready(function(){	

//set up the slide on the homepage
bindHomepageSlider = function()
{
	$("#slider").easySlider({
		auto: true, 
		continuous: true,
		numeric: true,
      	speed: 	800,
		pause:	4000
	});
}


//set up the tolltops on the sissy dresses view.
bindThumbnailToolTips = function()	
{		
	$(".image-constrained").tooltip({tip: ".product-info", effect:"fade"}); 
}
	

//Bind Elements
bindHomepageSlider();
bindThumbnailToolTips();
					
//end document readycall
});	
