

function panelButtonRollover(left_id, left_img, middle_id, middle_img, right_id, right_img)
{		
	document.getElementById(left_id).src = left_img;
	document.getElementById(middle_id).style.backgroundImage = "url(" + middle_img + ")";
	document.getElementById(right_id).src = right_img;	
}	

jQuery.noConflict();

jQuery(document).ready(function () {
	var roundTop = {tl: { radius: 16}, 
					tr: { radius: 16},
					bl: false, 
					br: false, 
					antiAlias: true, 
					autoPad: false};
					
	var roundBottom = {	tl: false, 
						tr: false, 
						bl: { radius: 16}, 
						br: { radius: 16}, 
						antiAlias: true, 
						autoPad: false};
						
	var round =	{	tl: { radius: 8}, 
					tr: { radius: 8},
					bl: { radius: 8}, 
					br: { radius: 8}, 
					antiAlias: true, 
					autoPad: false};
	
	var cornersObj; 
	cornersObj = new curvyCorners(roundTop, "roundTop");
	cornersObj.applyCornersToAll();
	cornersObj = new curvyCorners(roundBottom, "roundBottom");
	cornersObj.applyCornersToAll();
	cornersObj = new curvyCorners(round, "secondaryInnerPanel");
	cornersObj.applyCornersToAll();			
});