$(document).ready(function(){

	/* ENABLE SUBMENU */
    $("#menu ul li").hover(
		function(){
			i = $(this).children('ul:eq(0)');
			if(i.is(":hidden"))
				i.show();
		},
		function(){
			i = $(this).children('ul:eq(0)');
			if(i.is(":visible"))
				i.hide();
		}
    );

	$('div#overlay').ifixpng();
	
	$("#content_left .image_left_template img").each(function(){
		$(this).prependTo($(this).parents('div.image_left_template')).removeAttr('align').wrap('<div class="leftFloatImg"></div>');
	});
	
	$("img[align='left']").css('margin-right','10px');
	$("img[align='right']").css('margin-left','10px');

});



