/*
Theme Name: Crazy Tomato
Author: martin.mikulka@crazytomato.com
*/
jQuery(document).ready(function() {

 jQuery('.menu').each(function() {
  jQuery(this).find('li:last').addClass('last');
 });

 jQuery('div.no-lightbox a').each(function() {
  jQuery(this).replaceWith(jQuery(this).html());
 });

 jQuery('a.external , *.external a').attr('target' , '_blank');
});

