// jQuery no conflict mode
jQuery.noConflict();
jQuery(document).ready(function($){ 

// Menu dropdown
$('#menu ul').parent().addClass('hassub'); 
$("#menu li").hover(
	function() { $('ul:first',this).show(); },
		function() { $('ul:first',this).hide(); }
);

// For tables
$("table tr:odd").addClass("odd");

// Special offers page template
$('.threecolumn ul li:nth-child(3n)').addClass('last');

// Webcam refresh
setInterval(function() {
	$('#mycam').attr('src','http://www.korvemaa.ee/cam.php?r='+Math.random());
},5000);


$('#fp_slides img, .post_thumbnail img, li.cat-item a, li.page_item a, #gallery img').removeAttr('title');

// Remove <br /> from sidebar calendar
$('#sidebar').find('.calnk').find('br').remove();
});
