$(function () {        
	$('div.jury_statements marquee').marquee('pointer').mouseover(function () {
		$(this).trigger('stop');
	}).mouseout(function () {
		$(this).trigger('start');
	});
	$('div.finalists_links marquee').marquee('pointer').mouseover(function () {
		$(this).trigger('stop');
	}).mouseout(function () {
		$(this).trigger('start');
	})
	window_width = $(window).width();
	console.log(window_width);
	marquee_width = window_width - 230;
	console.log(marquee_width);
	$("div.pointer").css("width",marquee_width)
});
