// Add show/hide best-selling products
$(function() {
	var val = $.cookie('bestsellshow');
	
	$('#best-selling h2').append('<a href="javascript:;" id="showhidebest"><img src="/css/img/sort-desc.gif" alt="show" title="show" /></a>');

	if (val == 'hidden') {
		$('#best-selling div').hide();
		$('#showhidebest').addClass('showbs').html('<img src="/css/img/sort-desc.gif" alt="show" title="show" />');
	} else {
		$('#showhidebest').addClass('hidebs').html('<img src="/css/img/sort-asc.gif" alt="hide" title="hide" />');
	}
	
	if (val == 'hidden') {
		$('#showhidebest').toggle(function(){
			$('#best-selling div').show('slow');
			$.cookie('bestsellshow', 'showing', { expires: 7 });
			$('#showhidebest').addClass('hidebs').removeClass('showbs');
			$('#showhidebest').html('<img src="/css/img/sort-asc.gif" alt="hide" title="hide" />');
		}, function(){
			$('#best-selling div').hide('slow');
			$.cookie('bestsellshow', 'hidden', { expires: 7 });
			$('#showhidebest').addClass('showbs').removeClass('hidebs');
			$('#showhidebest').html('<img src="/css/img/sort-desc.gif" alt="show" title="show" />');
		});
	} else {
		$('#showhidebest').toggle(function(){
			$('#best-selling div').hide('slow');
			$.cookie('bestsellshow', 'hidden', { expires: 7 });
			$('#showhidebest').addClass('showbs').removeClass('hidebs');
			$('#showhidebest').html('<img src="/css/img/sort-desc.gif" alt="show" title="show" />');
		}, function(){
			$('#best-selling div').show('slow');
			$.cookie('bestsellshow', 'showing', { expires: 7 });
			$('#showhidebest').addClass('hidebs').removeClass('showbs');
			$('#showhidebest').html('<img src="/css/img/sort-asc.gif" alt="hide" title="hide" />');
		});	
	}
	
});

$(function() {
    $('.panel_tool_tip').tooltip({
	    track: true,
	    delay: 0,
	    showURL: false,
	    showBody: " - ",
	    opacity: 0.9
    });	 	
    $('.panel_tool_tip img').attr('alt','');
});

$(function() {
    if ($('.form-error').length) {
        $('.form-error a').click(function () {
             var href = $(this).attr('href');
             $(href).focus();
             return false;
         });
     }
});

	$(function(){
		if ($('#w').val() == '') {
			$('#w').val(' vyhledávání ');
		}
		$('#w').click(function(){
		    if ($(this).val() == ' vyhledávání ') {
		    	$(this).val('');
		    }
		});
	});