/**
 * @author james
 */
var testSize = function() {
	var size = window.getSize();
	if(size.y > 750) {
		if ($('shim').getStyle('height') != '5%') {
			$('shim').tween('height', '5%');
		}
	} else {
		if($('shim').getStyle('height')!='1%') {
			$('shim').tween('height','1%');
		}
	}
}
/*
window.addEvent('resize', function() {
	testSize();
});
window.addEvent('load', function() {
	testSize();
});*/
