/* Script to enable hover function */
 $().ready(function() {
			$('.hoverable').hover(
					 function() {
							 $(this).addClass('hovered');
			}, function() {
						$(this).removeClass('hovered');
			}
	 );
 });
 