jQuery.noConflict();

(function($) {

$(function() {
	var f = new FlashInterface();
	setTimeout(function() {
		f.setObjectById("ieMovie");
	}, 50);
	
	$(".award").click(function() {
		$this = $(this);
		
		f.call("changeAward", $this.attr("rel"));
		
		if($this.parent().find(".active").length) {
			$this.parent().find(".active").removeClass("active");
		}
		
		$this.addClass("active");
		
		return false;
	});
});
})(jQuery);
