// JavaScript Document

$(document).ready(function() {
$(".hide_if_javascript_enabled").css({ display: "none"}, 500);	
$(".title").css({ lineHeight: "175px"}, 500);

$(".title").hover(function() {
		$(this).stop().animate({ lineHeight: "120px"}, 500);
    },
	function() {
		$(this).stop().animate({ lineHeight: "215px"}, 500);
    });

//$("body").jsnow();
});