$(function(){
			//$(".site_tbl").css('height', $(window).height());
			$(".credits").css('width', $(".page_div").width());		
});

//--------- scroll --------------//
var timerDown,timerUp;
function scrollDivDown(obj){
	$("#" +obj).scrollTo("+=3");
	timerDown=setTimeout("scrollDivDown('"+ obj + "');",20);
}

function scrollDivUp(obj){
	$("#" +obj).scrollTo("-=3");
	timerUp=setTimeout("scrollDivUp('"+ obj + "');",20);
}

//--------- colorBox (open the pupUp table from the calender in HP)-------------//
$(document).ready(function(){
	$(".calenderTablePopUp").colorbox({width:"690px", height:"550px", iframe:true});
});

//--- auto chackbox ---//
function chk(){
	if($("input.n1:checked").length>0){
		$("#n").attr("checked","checked");
	} else {
		$("#n").removeAttr("checked");
	}
}

//--- print ---//

function printpage() {
	window.print();
}

