<!--
	var hoverConfig = {    
     sensitivity: 1,
     interval: 500, 
     over: function() {
					$(".preview-content", this).slideDown(200, function(){
						//$(this).parent().siblings().slideUp(200);
						//$(this).parent().addClass("min-height-187");
						});
					}, 
     timeout: 500, 
     out: function() {
					//$(this).removeClass("min-height-187");
					$(".preview-content", this).slideUp(200, function(){
						//$(this).parent().siblings().slideDown(200);
						});
					}
	};
	
	
	
$(document).ready(function() {
	$('.latest-feed').click(function() {
		var go = $("a", this).attr("href");
		if(go != null){
			window.location.href = go;
		}
		
	})
	$('.latest-feed').hover(function(){
		$(this).addClass("highlight");
	}, function(){
		$(this).removeClass("highlight");	
	});

	$('.mini-feed').hoverIntent(hoverConfig);
	
	var is_chrome = navigator.userAgent.toLowerCase().indexOf('chrome') > -1;
    if (is_chrome = 'true'){
      $('#use-chrome').fadeIn(300);
    }
	 
	$('#featured-cycle').cycle({ 
		prev:   '#prev', 
		next:   '#next', 
		pause:  1, 
		speed:  1000, 
		timeout: 7000,
		slideExpr: 'div.cycler'
	});

}); 
-->