function Banner()
{
	this.logo = 'images/banner_logo.png';
}

Banner.prototype.Init = function()
{
	this.LoadStructure();	
}

Banner.prototype.LoadStructure = function()
{	
	// Leave Main empty; it is for the panels to load
	var bannerText = '<div class="banner_logo"><img src="' + this.logo + '" /></div> <div class="banner_main"></div>';
	$('.commonbanner').html( bannerText );
}

Banner.prototype.LoadPanelImage = function( imagePath )
{
	var text = '<img src="' + imagePath + '"/>';
	$('.banner_main').html( text );
}
