$(document).ready(function(){
	// Init accordion
	$("#redbox1").show(); 
	$("#redbox1_open").hide(); 
	$("#redboxbody1").hide(); 
	$("#redbox2_open").hide(); 
	$("#redboxbody2").hide(); 
	
	//First accordion clicked
	$("#redbox1").click(function(){
		$("#redbox1").hide();
		$("#redbox1_open").show(); 		
		$("#redbox2").show();
		$("#redbox2_open").hide(); 		
		$("#redboxbody1").show();
		$("#redboxbody2").hide();
		return false;
	});

	//First accordion close clicked
	$("#redbox1_open").click(function(){
		$("#redbox1").show();
		$("#redbox1_open").hide(); 		
		$("#redboxbody1").hide();
		return false;
	});
	
	//Second accordion clicked
	$("#redbox2").click(function(){
		$("#redbox2").hide();
		$("#redbox2_open").show(); 		
		$("#redbox1").show();
		$("#redbox1_open").hide(); 		
		$("#redboxbody2").show();
		$("#redboxbody1").hide();
		return false;
	});

	//Second accordion close clicked
	$("#redbox2_open").click(function(){
		$("#redbox2").show();
		$("#redbox2_open").hide(); 		
		$("#redboxbody2").hide();
		return false;
	});
});

function printFriendly(url) {
	if (url.indexOf('?') > 0) {
		window.open(url + '&Printerfriendly=5'); 
	} else {
		window.open(url + '?Printerfriendly=5'); 
	}
	document.reload;
}


