$(document).ready(function(){

setTimeout(function(){
	$("#logo").animate({left: '235px' }, {queue:false, duration:2000});	
}, 500);

$('a.email_replace').nospam({
  filterLevel:'low'
});


$('a[rel="external"]').click(function(){ 
	window.open( $(this).attr('href') );
	return false;
})

$("table#prices tr:even").addClass("even");
$("table#prices tr:odd").addClass("odd");
$("table#prices tr").hover(function(){
$(this).addClass("hovcolor");
}, function(){
$(this).removeClass("hovcolor");
});

});
