$(document).ready(function() {
	
	$('#home-quote-text').css('left','304px').fadeTo(0,0);
	$('#home-quote-text').animate({
    opacity: 1.0,
    left: '0'
  }, 1300, function() {
    // Animation complete.
  });
	
	$('#sidebar-news h3').click(function(){
  window.location = "/news/index.php";
}); 
$('#sidebar-news h3').hover(
		function () {
			$(this).addClass('hover');
		}, 
		function () {
			$(this).removeClass('hover');		
		}
	);
	
  });
