 $(document).ready(function() {
	 // Do startup stuff.
	 roundThings();
	 removeClearBeforeDataSheetDownload();
 });

 function roundThings(){
	 $("#menusite").corner("round 5px");
	 $("#newsarchiv .date").corner("round 5px");
	 $(".fullfilelist .details .download").corner("round 5px");
	 $(".showcase").corner("round 5px");
 }
 
 /**
  * Removes the csc-default class from the parent of a datasheet download plugin
  * */
 function removeClearBeforeDataSheetDownload(){
	 if($(".tx-damfrontend-pi2").children().hasClass("datenblattdownload")){
		 $(".tx-damfrontend-pi2").parent().removeClass("csc-default");
	 }
 }
 
 function printPage() {
	 focus();
	 if (window.print) {
		 window.print();
	 }
}

