// JavaScript Document
var checkExpand = 0;
function testexpand()
{
	if (checkExpand == 0 || $('#headerLogo').height()==90 ) {
		checkExpand = 1;
		//$('#headerLogo').animate({"height": "440px","width":"753px"}, 500);
		$('#headerLogo').animate({
		    width: '940px',
		height: '600px'
		}, {
		duration: 500,  
		complete: function() {
		  checkExpand = 0;
		}
		});
	}
}
function testbackexpand()
{
	if (checkExpand == 0 || $('#headerLogo').height()==600) {
		checkExpand = 1;
		//$('#headerLogo').animate({"height": "100px","width":"600px"}, 500);
		$('#headerLogo').animate({
		    width: '940px',
		height: '90px'
		}, {
		duration: 500,  
		complete: function() {
		  checkExpand = 0;
		}
		});
	}
}
