// JavaScript Document
function columnHeightFix() {
	var heightLeft, heightRight;
	heightLeft = document.getElementById('block_main').offsetHeight;
	heightRight = document.getElementById('block_secondary').offsetHeight;
	if(heightLeft < heightRight) document.getElementById('block_main').style.height = (heightRight + 50) + 'px';
}
function loadImage(car, image) {
	document.getElementById('carpicframe').style.display = 'inline';
	document.getElementById('carpicframe').src = 'imageHolder.php?d='+car+'&i='+image;
	document.getElementById('block_main').offsetHeight = document.getElementById('block_main').offsetHeight + 417;
}
window.addEvent('domready', function() {	
	//create our Accordion instance
	var myAccordion = new Accordion($('accordion'), 'h3.toggler', 'div.element', {
		opacity: false,
		onActive: function(toggler, element){
			toggler.setStyle('color', '#dd8a30');
			toggler.setStyle('background-image', 'url("imgs/little_arrow_down.png")');
		},
		onBackground: function(toggler, element){
			toggler.setStyle('color', '#999');
			toggler.setStyle('background-image', 'url("imgs/little_arrow_right.png")');
		}
	});
});
