$(function() {
	$("#navigation>li").hover(function(){ $(this).addClass("hover"); },function(){ $(this).removeClass("hover"); });
	$("a[rel*=external],a[rel*=nofollow],a[rel*=non-html]").attr("target","_blank");
	$("#receipt").pngFix();
	$("a[href=#]").click(function(){ return false; }).css("cursor","default");
	$("a[rel*=popup]").click(function(){
		window.open($(this).attr("href"),"pop","status=1,toolbar=1,width=840,height=600,scrollbars=1,resizable=1");
		return false;
	});
	$("a[rel*=video]").click(function(){
		window.open($(this).attr("href"),"pop","status=1,toolbar=1,width=240,height=180,scrollbars=0,resizable=1");
		return false;
	});
});