$(document).ready(function(){
    var global = false;
     $('.menu_main_content a').css('cursor', 'default');
	 $('.menu_main_content a').attr('href', '#');
	
    $('.menu_main_content').parent().hover(function(){ // Po nakierowaniu na menu
        $(this).prev().prev().css('background-image', 'url(Public/Layouts/Standard_template/menu_left.gif)');
        $(this).css('background-color', '#3D1C44');
        $(this).children().children().css('color', 'white');
        $(this).next().css('background-image', 'url(Public/Layouts/Standard_template/menu_right.gif)');
        
        var get_html = $(this).prev().html();
        if (get_html != '' && get_html != null && get_html != false) {
            var get_offset = $(this).children().parent().offset(); // Pobieram offset dla przycisku
            $(this).append('<div id="menu_js_scroll" style="background-color: #3D1C44; width: ' + ($(this).children().parent().width() + 40) + 'px; position: absolute; top: ' + (get_offset.top + 44) + 'px; left: ' + (get_offset.left - 9) + 'px;"><div style="margin-top: 10px; margin-bottom: 20px;">'+get_html+'</div></div>');
        	$(".menu_link_header a").attr('style', 'color: white; font-size: 13px; font-family: Tahoma, sans-serif;');
		}
        
    }, function(){ // Po zjechaniu z menu
        $('#menu_js_scroll').remove();
        $(this).prev().prev().css('background-image', '');
        $(this).css('background-color', 'white');
        $(this).children().children().css('color', 'black');
        $(this).next().css('background-image', '');
        
    });
});
