// JavaScript Document
	function changepic(id, pic_src) {
		document.getElementById(id).src = pic_src;
	}
function hidespeedcontact() {
	document.getElementById('fixedcontact').style.display='none';
	document.getElementById('fixeddiv').style.height='18px';
	document.getElementById('sppedcontactimg').innerHTML = '<img src="http://www.mobdeco.ro/img/layout/fastFeedback_max.gif" alt="" border="0" onclick="showspeedcontact()" style="cursor:pointer" />';
	setCookie('mobdeco_speedcontact', 'hide', 30);
}
function showspeedcontact() {
	document.getElementById('fixedcontact').style.display='';
	document.getElementById('fixeddiv').style.height='145px';
	document.getElementById('sppedcontactimg').innerHTML = '<img src="http://www.mobdeco.ro/img/layout/fastFeedback_min.gif" alt="" border="0" onclick="hidespeedcontact()" style="cursor:pointer" />';
	setCookie('mobdeco_speedcontact', 'hide', -30);
}