/* CONTENT 1 */
c1_show = new Tween(document.getElementById('content_1').style,'height',Tween.strongEaseOut,2,340,1,'px');
c1_show.onMotionStarted = function(){
	document.getElementById('content_1_line').className = "content_line_show";
	document.getElementById('current_content').value = "1";
};
c1_hide = new Tween(document.getElementById('content_1').style,'height',Tween.strongEaseOut,340,2,1,'px');
c1_hide.onMotionStarted = function(){
	document.getElementById('content_1_line').className = "content_line";
};

/* CONTENT 2 */
c2_show = new Tween(document.getElementById('content_2').style,'height',Tween.strongEaseOut,2,340,1,'px');
c2_show.onMotionStarted = function(){
	document.getElementById('content_2_line').className = "content_line_show";
	document.getElementById('current_content').value = "2";
};
c2_hide = new Tween(document.getElementById('content_2').style,'height',Tween.strongEaseOut,340,2,1,'px');
c2_hide.onMotionStarted = function(){
	document.getElementById('content_2_line').className = "content_line";
};

/* CONTENT 3 */
c3_show = new Tween(document.getElementById('content_3').style,'height',Tween.strongEaseOut,2,340,1,'px');
c3_show.onMotionStarted = function(){
	if (document.getElementById('current_menu').value == "r3c2") {
		fade('footer_div_line','in',0,'');
	}
	document.getElementById('current_content').value = "3";
};
c3_hide = new Tween(document.getElementById('content_3').style,'height',Tween.strongEaseOut,340,2,1,'px');
c3_hide.onMotionStarted = function(){
	fade('footer_div_line','out',100,'');
};