/* LRA */

function onLRAMouseOver() {
	jQuery('#lra-link').animate({left:0, width:960},250,function() {
	jQuery('#home').animate({backgroundColor:"#222222"},50);
	});
	jQuery('#lra-link-image').hide();
}

function onLRAMouseOut() {
	jQuery('#home').css({backgroundColor:"#FFFFFF"});
	jQuery('#lra-link').animate({left:480, width:0},500,function() {
		jQuery('#lra-link-image').fadeIn(150);
	});
	jQuery('#home').animate({backgroundColor:"#FFFFFF"},50);
//	jQuery('#navigation').animate({backgroundColor:"#FFFFFF"},250);
}

function onLRAClick() {
	window.location = 'index.php/en/home2';
}
