$(document).ready(function() {
	


$(".day").corner({
				tl: { radius: 7 },
				tr:{ radius: 7 },
			bl: false,
			  br: false
			  //autopad:false
							   }); //adds rounded corner to quicklinks box
$(".month").corner({
					tl: false,
				tr:false,
			bl: { radius: 3 },
			  br: { radius: 3 }
					   }); //adds rounded corner to quicklinks box

//hoverlink
$('a.hoverlink').cluetip({local:true, sticky: false, cursor: 'pointer'});


//external links to open in new window
$('a[@rel*="external"]').click( function() {
window.open( $(this).attr("href") );
return false;
});

//slideshow on homepage
$(".slideshow").cycle({ 
    fx:    "fade", 
	timeout: 3000,
    speed:  400,
	pause: 1
	

});

//row striping for pr list
$('ul.pr li:odd').addClass('alt');


});
