$(document).ready(function(){
    	
 
 		// fonts 
		$(".maincontent h2:not(:contains(':')), h1:not(:contains(':')), h6:not(:contains(':')), h2.blocktitle:not(:contains(':'))").append(":");
		Cufon.replace('#about', { fontFamily: 'RolettaSerif' });
		Cufon.replace('h1', { fontFamily: 'RolettaSerif' });  
		Cufon.replace('h2.blocktitle', { fontFamily: 'RolettaSerif' });　  
 
   	// corners
   	$('.roundbox').corner("10px");  
   	$('.roundboxtop').corner("10px top");
		$('.pagenavigation').corner("10px");   	
		$('.box, .boxlist li ').corner("5px");   	
		$('a.buy').corner("5px");   	 


			// ORDER BY
			if($('.toolbar').length > 0) {
				$(".toolbar :text:visible:enabled:first").focus();   
				$('#orderby').change(function() {
  					// set the window's location property to the value of the option the user has selected
 					window.location = $(this).val();
					});
				}

   	 	
   	 		// hover
   	 		$('a').not("#header a").hover(function(){ 
   	 				$(this).children("img").animate({opacity:0.8},50); 
   	 				},
   	 			function(){
   	 				$(this).children("img").animate({opacity:1},100);
   	 				} 
   	 			);
   
  		
		// MAIL HIDER	
		$(".epost").each(function(i){
  	 	// this.id = this.id + "_" + i;
   	 	var mail = $(this).text().replace(' alfakroll ', '@').replace(' punktum ', '.').replace(' punktum ', '.').replace(' punktum ', '.').replace(' punktum ', '.');
  	  		$(this).html('<a hr' + 'ef="mai' + 'lto:' + mail +'">' + mail + '</a>');  	 
 			});				

    
  	});    

  
