jQuery().ready(function(){
		// second simple accordion with special markup
		jQuery('#frontmenu').accordion({
			active: false,
			header: '.head',
			animated: 'easeslide',
			alwaysOpen: false,
			autoheight: false
		});
	});		
	img1 = "images/add_bullet.gif";
	img2 = "images/less_bullet.gif";
	function changeImg(c_img) {
		if (document[c_img].src.indexOf(img1)!= -1) document[c_img].src = img2;
		else document[c_img].src = img1;
} 

