$(document).ready(function(){
	//lightbox
	//jQuery('a img.popup').parent().attr('rel','lightbox');
	 $('a img.popup').parent().lightbox();
	
	 //obsluga menu rozwijanego
	$('#menuTop').children('li').dropDownMenu(0);
	drop_down('b1');
	drop_down_off('b1');
	drop_down('b2');
	drop_down_off('b2');
	drop_down('b3');
	drop_down_off('b3');
	drop_down('b4');
	drop_down_off('b4');
	drop_down('b5');
	drop_down_off('b5');
	drop_down('b6');
	drop_down_off('b6');
});




function drop_down(param){
	if(param){
		$("#"+param).children("ul:first").show();
	}
}

var mousecheck = false;
function drop_down_off(param){
	
	$("li#"+param).mouseenter(function(){
		mousecheck = true;
	}).mouseleave(function(){
		mousecheck = false;
	});
	
	if(mousecheck==false){
		$("li#"+param).children("ul:first").hide();
	}
}

(function(){

	$.fn.extend({
	dropDownMenu: function(iLeft){
		$(this).each(function(){
			$(this).children('ul:first').css({left:iLeft}).hide();
			iSubLeft = $(this).children('ul:first').width();
			iSubLeft = iSubLeft + iLeft;
			$(this).children('ul:first').children('li').dropDownMenu(iSubLeft);
			
			$(this).mouseenter(function(event){
				$(this).children("ul:first").show();
			})
			$(this).mouseleave(function(){
				$(this).children("ul:first").hide();
			})
		})
	}
})


$.extend({
	debug: function(it){
		if(window.console){
			console.log(it);
		}
		else{
			alert(it);
		}
	}
})
})(jQuery)

