/* Drop-down */
function togglecmsblock(id) {				
	
	if (document.getElementById(id).style.display == 'block'){
		document.getElementById(id + "_link").style.backgroundImage = "url(images/dropdown.gif)";
		jQuery('#' + id).hide();

	}
	else {
		jQuery('#' + id).slideDown('fast',function(){  if (jQuery.browser.msie) { this.style.removeAttribute("filter");}});	
		document.getElementById(id + "_link").style.backgroundImage = "url(images/dropdownup.gif)";
	}	
			
}