// 
//  main.js
// 

    $(document).ready(function() {
	    
	    /* Cufon */
        if(typeof Cufon != 'undefined') {
            Cufon.set('fontFamily', 'Helvetica Neue Medium Condensed');
            Cufon.replace('.intro h1, .faqs h1, .resellers h1, .configure h1, .buzz h1, #highlights h3, #setup h2, .product h1');
            Cufon.set('fontFamily', 'Bell Gothic Standard');
            Cufon.replace('#navigation li');
        }
        
        /* DD Belated */
        if(typeof DD_belatedPNG != 'undefined') {
            DD_belatedPNG.fix('#content .intro');
        }
        
        /* Setup Progress Bar */
        $('#setup ol.progress em.active').parent().addClass('active');
        if(jQuery.browser.msie && jQuery.browser.version<7){
		  
			$('.button').hover(  
			 function() {  
			  $(this).addClass('hover');  
			 },  
			 function() {  
			  $(this).removeClass('hover');  
			 }  
			);
			$('.button input').hover(  
			 function() {  
			  $(this).addClass('hover');  
			 },  
			 function() {  
			  $(this).removeClass('hover');  
			 }  
			);
			$('.buttons').hover(  
			 function() {  
			  $(this).addClass('hover');  
			 },  
			 function() {  
			  $(this).removeClass('hover');  
			 }  
			);
			$('.buttons input').hover(  
			 function() {  
			  $(this).addClass('hover');  
			 },  
			 function() {  
			  $(this).removeClass('hover');  
			 }  
			);
			
		}
		
	});
