$(document).ready(function() {

	$("input[type=checkbox]").uniform();
	$("input[type=checkbox]:first").click(function() {
		$("input[type=checkbox]:not(:first)").attr("checked", false);
		$.uniform.update();
	});
	$("input[type=checkbox]:not(:first)").click(function() {
		$("input[type=checkbox]::first").attr("checked", false);
		$.uniform.update();
	});

	$(".partners a, #menu-item-16 a").each(function() {
		this.target = "_blank";
	});

});
