﻿(function() {

	function bustFrame() {
		if (top != self) {
			top.location.replace(self.location.href);
		}
	}

	window.onload = bustFrame;

})();

$(document).ready(function () {
	$("a.fancybox").fancybox({
		'width': '50%',
		'height': '60%',
		'autoScale': false,
		'transitionIn': 'none',
		'transitionOut': 'none',
		'type': 'iframe'
	});

	$("#header").click(function () {
		window.location.replace("/");
	});
});

