/* noConflict-modus ivm prototype*/
$.noConflict();

jQuery(document).ready(function($) {

    /*$('#submenu ul li').hover(function () { alert($(this));

        //$('ul.children').hide();
        $($(this).attr('class')+' ul.children').fadeIn('slow');

    });*/
                             /* $(this).find('ul.children .current_page_item').parent()
                    .stop(true, true).delay(50).animate({ "height": "show", "opacity": "show" }, 200 );*/

        //$("#submenu ul.children").css({ display: 'none' });
	$("#submenu ul.smenu li").hover(function() {
		$(this).find('ul.children')
			.stop(true, true).delay(50).animate({ "height": "show", "opacity": "show" }, 200 );

	}, function(){
		$(this).find('ul.children')
			.stop(true, true).delay(50).animate({ "height": "hide", "opacity": "hide" }, 200 );

	});


        /*$("#submenu ul.smenu li").not( ".current_page_ancestor" ).hover(function() {
//not( ".current_page_ancestor" )


                $('ul.children .current_page_item').parent()
                    .stop(true, true).delay(50).animate({ "height": "hide", "opacity": "hide" }, 200 );
        

	}, function(){
                $('ul.children .current_page_item').parent()
                    .stop(true, true).delay(50).animate({ "height": "show", "opacity": "show" }, 200 );
	});*/


});







