// JavaScript Document

function load_page(){
	this.data_dir = "/templates/heinemann/start/data/";
	this.currShown = 0;
	this.changeTo = function(page){
		$('#content_container .content').fadeOut(0);
		$('#brand_'+this.currShown).hide();
		$('#brand_'+page).show();
		this.currShown = page;
		$('#content_container .content').fadeIn(500, function() {
			if(jQuery.browser.msie)
				$(this).get(0).style.removeAttribute('filter');
        });
	}
}
var objSubPage = new load_page();
