$(document).ready(function() {
	$(".rssLightBox").bind("click", function() {
		$.fancybox.showActivity();

		$.ajax({
			type	: "POST",
			cache	: false,
			url		: '/rss',
			data		: $(this).serializeArray(),
			success: function(data) {
				$.fancybox(data);
			}
		});

		return false;
	});

});

function basketCount(n, min, blockId) {
	var element = document.getElementById(blockId);

	var sum = parseInt(element.value) + parseInt(n);
	if(sum >= min) {
		element.value = sum;
	} else {
		alert('Tento produkt lze objednat v množství alespoň ' + min + ' kusů.');
	}
	
	return false;
}

$(document).ready(function() {
	var mn = $('#menuNext');
	var uo = $('#ulOther');
	var ol = $('#othersLine')

	$('html').click(function() {uo.css('display', 'none');ol.css('display', 'none');mn.removeClass('active')});

	mn.click(function(event){uo.fadeIn();ol.fadeIn();mn.addClass('active');event.stopPropagation();return false;})

	$('ul.main').children('li').mousemove(function(){
		if(uo.css('display')==='block'&&$(this).attr('id')!=='containsMenuNext'){uo.css('display', 'none');ol.css('display', 'none');mn.removeClass('active');}else{return false;}
	})
	$('ul#ulOther').children('li').children('a').click(function() {
		window.location = $(this).attr('href')
		return false;
	})

	var hoverConfig = {
		over: over,
		timeout: 5000,
		out: out,
		interval: 0
	};

	$('ul#ulOther,li#containsMenuNext').hoverIntent(hoverConfig)

	function over() {
		
	}

	function out() {
		uo.css('display', 'none');ol.css('display', 'none');mn.removeClass('active')
	}

});
