$(document).ready(function(){
	$("input[type='checkbox']").click(function() {
		this.blur();
		this.focus();
	});
	
	$("#subscrPanel input[type='checkbox']").change(function() {
		if($(this).is(":checked")) {
			$(this).parent().parent().find("input[type='checkbox']").attr("checked", "checked");
		}
		else {
			$(this).parent().parent().find("input[type='checkbox']").removeAttr("checked");
		}
	});
	
	$('#photoCarousel').jcarousel({
		scroll:7
	});
});

function popup(page) {
	window.open(page, 'preview', 'width=800,height=540,scrollbars');
}

function popup2(page) {
	window.open(page, 'preview', 'width=644,height=520,scrollbars');
}


