	$(document).ready(function(){	
			$("#slider").easySlider({
				auto: true, 
				continuous: true
			});
		});	
		
//clickable divs
$(document).ready(function(){
	$(".clickable").click(function() {
	  window.location = $(this).find("h3:first a:first").attr("href");
	});

  $(".clickable").hover(
    function() {
      $(this).addClass("hover");
       $(this).find("h3:first a:first").addClass("hover");
    },
    function() {
      $(this).removeClass("hover");
             $(this).find("h3:first a:first").removeClass("hover");

    }
  );
});
