









	jQuery(function()
	{ 
	jQuery('#scrollpane').jScrollPane({showArrows:true, dragMinHeight:7,dragMaxHeight:7,scrollbarWidth:17});
	});





jQuery(function() {
    swapValues = [];
    jQuery(".swap_value").each(function(i){
        swapValues[i] = jQuery(this).val();
        jQuery(this).focus(function(){
            if (jQuery(this).val() == swapValues[i]) {
                jQuery(this).val("");
            }
        }).blur(function(){
            if (jQuery.trim(jQuery(this).val()) == "") {
                jQuery(this).val(swapValues[i]);
            }
        });
    });
});















jQuery(document).ready(function(){	
	jQuery("#slider").easySlider({
		auto: true,
		continuous: true,
		pause: 8000
	});
});









window.addEvent('domready', function() { 
			myCal1 = new Calendar({ date1: 'm/d/Y' }, { direction: 1, tweak: {x: 6, y: 0} });
		});

	
	
	
	
	
	
	

var drop1 = document.getElementById('drop1');
var drop2 = document.getElementById('drop2');
var drop3 = document.getElementById('drop3');
var drop4 = document.getElementById('drop4');
var drop5 = document.getElementById('drop5');
var drop6 = document.getElementById('drop6');
var drop7 = document.getElementById('drop7');








startList = function() {
	if (document.all&&document.getElementById) {
		navRoot = document.getElementById("nav");
		for (i=0; i<navRoot.childNodes.length; i++) {
			node = navRoot.childNodes[i];
			if (node.nodeName=="LI") {
				node.onmouseover=function() {
					this.className+=" over";
				}
				node.onmouseout=function() {
					this.className=this.className.replace(" over", "");
				}
			}
		}
	}
}
window.onload=startList;











var total_divs=0;
var className="fadeThis";
jQuery(document).ready(function(){
jQuery("."+className).attr("id", function (arr) {
total_divs++;
return "fade" + (arr+1);
})
fadeEngine(0);
});
</script>

<script type="text/javascript">
function fadeEngine(x) {
var y=x;
if(x==total_divs) y=1; else y++;
jQuery("#fade"+x).css("display","none");
jQuery("#fade"+y).fadeIn("slow");
setTimeout('fadeEngine('+y+')',1000);
}