/* 
** 
** STRECH | COMPRESS ELEMENTS
** DEN CLAN
** 
** www.den-clan.de
** 
*/

function strechBox(func,strech,typ) {
	var sStrech = document.getElementById(strech);
	
	if(typ == 'suche') {
		if(func == 1) {
			$(sStrech).morph({width: 250, color: '#888888', borderColor: '#D2D2D2', backgroundColor: '#FFFFFF'});
		}
		else {
			$(sStrech).morph({width: 150, color: '#ABABAB', borderColor: '#333333', backgroundColor: '#222222'});
		}
	}
	
	if(typ == 'login') {
		if(func == 1) {
			$(sStrech).morph({width: 250});
		}
		else {
			$(sStrech).morph({width: 150});
		}
	}
} 
