jQuery.noConflict();

jQuery(document).ready(function(){
	jQuery('li.menu_tab').hover(
		function() { jQuery('ol', this).css('display', 'block'); },
		function() { jQuery('ol', this).css('display', 'none'); });
});
jQuery(document).ready(function(){
//for dynamic easing changes
	jQuery('#main_menu_items').lavaLamp({
		fx: 'easeInQuad',
		speed: 600
	});
});

function toggleComments(oButt, oDivComment){
	jQuery(oButt).toggleClass('rozwin', 'zwin');
	jQuery(oDivComment).toggle();
}
function toggleComments2(oButt, oDivComment){
	jQuery(oButt).toggleClass('zwin2', 'rozwin2');
	jQuery(oDivComment).toggle();
}
