// JavaScript Document
	jQuery().ready(function(){	
			
		// second simple accordion with special markup
		jQuery('#accordion-one').accordion({
			active: false, 
			header: '.head', 
			navigation: true, 
			event: 'mouseover',
			alwaysOpen: false,
			autoheight: false		
		});
		
		jQuery('#accordion-two').accordion({
			active: true, 
			header: '.head', 
			navigation: true, 
			event: 'mouseover',
			alwaysOpen: true,
			autoheight: false		
		});
		
	});
	
	function printWindow(){
	   bV = parseInt(navigator.appVersion)
	   if (bV >= 4) window.print()
	}


