/*
	Run at startup
*/
$(function () {
	// Attach accordion events
	$("#accordion").accordion({
		header: "h3",
		autoHeight: false,
		alwaysOpen: false,
		icons: {
			header: "ui-icon-circle-arrow-e",
			headerSelected: "ui-icon-circle-arrow-s"
		}
	});
	
	// Attach tab events
    var tabContainers = $('div.tabs > div');
    
    $('div.tabs ul.tabNavigation a').click(function () {
        tabContainers.hide().filter(this.hash).show();
        
        $('div.tabs ul.tabNavigation a').removeClass('selected');
        $(this).addClass('selected');
        
        return false;
    }).filter(':first').click();
});

/*
 *--- FOR COMPATIBILITY WITH EU SITE ----
 */

/* Used on product pages. Source: ricoh-europe.com/system/default.js */
function openPopup(href, varWidth, varHeight) {
	if (varWidth==0){
		varWidth=790;
	}
	if (varHeight==0){
		varHeight=570;
	}
	window.open(href, '', 'toolbar=no,scrollbars=1,status=0,location=0,resizable=1,width=' + varWidth + ',height=' + varHeight);
}

