$(document).ready(function(){
 	// button hovers
 	$('#submit, #basket-full td input.button').hover(function(){
 		$(this).addClass('hover');
	}, function(){
		$(this).removeClass('hover');
	});
	
	// submenus
	var speed = '150';
	
	$submenu = $('#menu-shop a.submenu');
	$submenu.not('a.submenu.active').parent().find('ul.sub').hide();
	
	$submenu2 = $('#menu-shop a.submenu2');
	$submenu2.not('a.submenu2.active').parent().find('ul.subsub').hide();
	
	$submenu.click(function(){
		if ($(this).hasClass('opened')) {
			$(this).parent().find('ul.sub').hide(speed);
		}
		else {
			$('#menu-shop a.opened').not(this).toggleClass('submenu').toggleClass('opened').parent().find('ul.sub').hide(speed);
			$(this).parent().find('ul.sub').show(speed);
		}
		$(this).toggleClass('submenu').toggleClass('opened');
	});
	
	$submenu2.click(function(){
		if ($(this).hasClass('opened')) {
			$(this).parent().find('ul.subsub').hide(speed);
		}
		else {
			$('#menu-shop a.opened').not(this).toggleClass('submenu2').toggleClass('opened').parent().find('ul.subsub').hide(speed);
			$(this).parent().find('ul.subsub').show(speed);
		}
		$(this).toggleClass('submenu2').toggleClass('opened');
	});
	
	// fancybox
	$('a.fancy').fancybox({
		'transitionIn'	: 'elastic',
		'transitionOut'	: 'elastic',
		'titlePosition'	: 'inside',
		'centerOnScroll': true
	});
	
  	$('#flash').flash({
  		src: 'http://www.eshopkonvalinka.cz/flash/flash.swf',
  		width: '100%',
  		height: '100%'
  	});
});
