// <![CDATA[
$(document).ready(function(){
	$('div.blog').hover(
	  function(){
		$(this).stop().animate({backgroundColor: "#f5f5f5"}, 300);
	  }, 
	  function(){
		$(this).stop().animate({backgroundColor: "#fff"}, 300);
	  });
});

$(document).ready(function(){
    $('#slideshow').cycle({
        fx:     'fade',
        speed:  'slow',
        timeout: 6000,
        pager:  '#slider_nav',
        pagerAnchorBuilder: function(idx, slide) {
            // return sel string for existing anchor
            return '#slider_nav li:eq(' + (idx) + ') a';
        }
    });
	$('.caption').css({"opacity":0});
	$('.slider-item').hover(function () {
		$(this).children('div.caption').stop().animate({'opacity':3,'left':'658px'}, 500, function() {});
	}, function () {
		$(this).children('div.caption').stop().animate({'opacity':3,'left':'960px'}, 500, function() {});
	});
});
// ]]>

