function change_visibility_primarii_list(){
	if (jQuery("#primariilist").css("display") == "none")
		jQuery("#primariilist").show();
	else
		jQuery("#primariilist").hide();
}

jQuery(document).ready(function() {

	jQuery(".header_menu_a").mouseout(function(){
		jQuery(this).css("background-image","none");
	});
	
	jQuery(".header_menu_a").mouseover(function(){
		jQuery(this).css("background-image","url(images/menu2.gif)");
	});
	
	if (jQuery("#scroller").length > 0){

	(function(jQuery) {
		jQuery(function() { //on DOM ready
			jQuery("#scroller").simplyScroll({
				autoMode: 'loop'
			});
		});
	})(jQuery);


	}
	
	if (jQuery("#scroller2").length > 0){

	(function(jQuery) {
		jQuery(function() { //on DOM ready
			jQuery("#scroller2").simplyScroll({
				className: 'vert',
				horizontal: false,
				frameRate: 20,
				speed: 1,
				autoMode: 'loop'
			});
		});
	})(jQuery);


	}
	
});