
$(function(){
	$('.menu_roz a').mouseover(function(){
		$(this).parent().next().children().css('background-color', '#FF9900');
	}).mouseout(function(){
		$(this).parent().next().children().css('background-color', '#FF0000');
	});	
});


$(function(){
	$('.klawisz_rozwin a').mouseover(function(){
		$(this).css('background-color', '#FF9900');
	}).mouseout(function(){
		$(this).css('background-color', '#FF0000');
	});	
});


$(function(){

	$('.podmenu').hide();
	
	$('.menu_cal .klawisz_rozwin').click(function(){
			$(this).next().toggle();
			if($(this).next().is(":hidden")){
				$(this).children().css('background-image', 'url(grafika/strzalka_do_dolu.png)');
			}else{
				$(this).children().css('background-image', 'url(grafika/strzalka_do_gory.png)');
			}
	});
});
