function stop(e) {
	if (!e) e = window.event;
	(e.stopPropagation) ? e.stopPropagation() : e.cancelBubble = true;
	(e.preventDefault) ? e.preventDefault() : e.returnValue = false;
	return false;
}

function prevDef(e) {
	if (!e) e = window.event;
	(e.preventDefault) ? e.preventDefault() : e.returnValue = false;
	return false;
}    	  
		
/**/

jQuery.noConflict();		
			
jQuery(document).ready(function() {

/**/

	function switchJsIdent(state){
		if(state=="load"){
			jQuery("body")
				.removeClass("noJs")
				.addClass("readyJs");
		}
		if(state=="ready"){
			jQuery("body")
				.removeClass("noJs")
				.removeClass("readyJs")
				.addClass("activeJs");
		}
	}

/**/

	jQuery('#print').click(function() {
	    window.print();
	    return false;
	});

/**/

    jQuery("a.pdf").click(function(){
	    window.open(this.href,"pdfWindow","toolbar=1,resizable=1,location=1,status=1,scrollbars=1,width=500,height=500");
	    return false;
    });

/**/

	switchJsIdent("ready")

})
