//cufon
$(document).ready(function() {
	Cufon.replace('.cleartype');
	Cufon.replace('#h1-welcome, #h2-akce, #h2-novinky', {fontSize: '19px'});
	Cufon.replace('#aktuality h3, #newsletter h3, #anketa h3, #clanky h3, #top10 h3', {fontSize: '14px'});
	Cufon.replace('#logo', {fontSize: '26px'});
	Cufon.replace('#logo small', {fontSize: '13px'});
});

//tabs in product detail
$(function() {
  var tabContainers = $('#tabs-div > div > div');
  tabContainers.hide().filter(':first').show();
  $('#tabs-div ul#tabs a').click(function () {
		tabContainers.hide();
		tabContainers.filter(this.hash).show();
		$('#tabs-div ul#tabs li').removeClass('selected');
		$(this)[0].parentNode.className = 'selected';
		return false;
	}).filter(':first').click();
 });

