Cufon.replace('#main h1, .heading strong, .heading h2');
$(function(){
$('.product').click(function() {
var productLink = $(this).find('.heading a').attr('href');
window.location.href = 'http://' + window.location.hostname + '/' + productLink;
});

//Checkbox-Validierung im Gratisproben-Formular nach Absenden
$('.mailformplus_contactform .submit').click(function(){
if($('.checkbox:checked').length > 2){
  alert('Es können maximal 2 Gratisproben angefordert werden.');
  return false;
}
else return true;
});

$('.block:first-child').css('border','0');
});