
window.addEvent('domready',function(){

	var height=window.getHeight();
	var width=window.getWidth();
	$('demoFrame').setStyle('height',height-51+'px');
	$('demoFrame').setStyle('width',width+'px');
	
	window.addEvent('resize',function(e){
		var height=window.getHeight();
		var width=window.getWidth();
		$('demoFrame').setStyle('height',height-51+'px');
		$('demoFrame').setStyle('width',width+'px');
	});
	
	$$('li.topLink').each(function(li){
		li.addEvents({
			click : function(){ this.addClass('sfhover'); },
			mouseleave : function(){ this.removeClass('sfhover'); }
		});
	});
	
	var list = $$('a.chooseTemplate');

	list.each(function(element) {

		var fx = new Fx.Styles(element, {duration:100, wait:false});

		element.addEvent('mouseenter', function(){
			fx.start({
				'font-size':12,
				'color': '#ffffff',
				'background-color':'#555555'
			});
		});

		element.addEvent('mouseleave', function(){
			fx.start({
				'font-size':12,
				'color': '#666666',
				'background-color':'#ffffff'
			});
		});	
	});
 
});

function changeText(a,b){
	document.getElementById(a).innerHTML = b;
}

