Cufon.replace('h1');
Cufon.replace('h2');
Cufon.replace('h4', {
hover: true 
});


var win=null;
function NewWindow(mypage,myname,w,h,scroll,pos){
if(pos=="random"){LeftPosition=(screen.width)?Math.floor(Math.random()*(screen.width-w)):100;TopPosition=(screen.height)?Math.floor(Math.random()*((screen.height-h)-75)):100;}
if(pos=="center"){LeftPosition=(screen.width)?(screen.width-w)/2:100;TopPosition=(screen.height)?(screen.height-h)/2:100;}
else if((pos!="center" && pos!="random") || pos==null){LeftPosition=0;TopPosition=20}
settings='width='+w+',height='+h+',top='+TopPosition+',left='+LeftPosition+',scrollbars='+scroll+',location=no,directories=no,status=yes,menubar=no,toolbar=no,resizable=no';
win=window.open(mypage,myname,settings);}


jQuery(document).ready(function(){	
showing = jQuery('#rotating_items div.rotating_item:first');
showing.siblings('div').hide();
setInterval("show_next_rotating_item(showing)", 5000); // aeg
});
jQuery.jQueryRandom = 0;  
jQuery.extend(jQuery.expr[":"],  
{  
random: function(a, i, m, r) {  
if (i == 0) {  
jQuery.jQueryRandom = Math.floor(Math.random() * r.length);  
};  
return i == jQuery.jQueryRandom;  
}  
}); 
function show_next_rotating_item(t){
jQuery(t).fadeOut('slow');

var next_rotating_item = jQuery(t).siblings('.rotating_item:random');
if(!next_rotating_item.attr('class')){
	next_rotating_item = jQuery('#rotating_items div.rotating_item:first');
}
next_rotating_item.fadeIn('slow');
showing = next_rotating_item;	
}