//cufon
$(document).ready(function() {
	$(document).pngFix();
	Cufon.replace('.cleartype');
	Cufon.replace('#h1-welcome, #h2-akce, #h2-novinky', {fontSize: '19px', color: '#fefefe'});
	Cufon.replace('#aktuality h3',  {fontSize: '14px', color: '#505a5d'});
	Cufon.replace('#clanky h3, #anketa h3',  {fontSize: '14px', color: '#ffffff'});
	Cufon.replace('#logo', {fontSize: '26px'});
	Cufon.replace('#logo small', {fontSize: '13px'});
	Cufon.replace('#top10 h3, #newsletter h3', {fontSize: '14px',color: '#505a5d'})
});

//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();
 });

