// 
//  main.js
//  Eredetiségvizsgálat.com
//  
//  Created by whitezo on 2009-05-06.
//  Copyright 2009 Hallocom Bt. All rights reserved.
// 

// $(document).ready(function(){
// 	$('#topmenu').children('div').slideUp('fast');
// });
// 
// jQuery(document).ready(function(){
// 	// $('#topmenu a').hover(function() {
// 	// 	$(this).parent().children(div).slideUp();
// 	// 	$(this).next().toggle('fast');
// 	// 	return false;
// 	// }).next().hide();
// 	// $('#topmenu a').mouseout(function() {
// 	// 	$(this).next().slideUp('fast');
// 	// });
// 	// 
// 	$("#topmenu a").hover(
// 		function() { 
// 			$(this).parent().children('div').slideUp('fast');
// 			$(this).animate({opacity: 1.0}, 500);
// 			$(this).next().slideDown('fast');
// 		},
// 		function() {
// 			// $(this).next().slideUp('fast');
// 		}
// 	);
// });

// Let's create it
// var verticalAccordion = new accordion('#topmenu');

// Now lets open the first slide
// verticalAccordion.activate($$('#topmenu .accordion_toggle')[0]);


(function(){

	/*Use Object Detection to detect IE6*/
	var  m = document.uniqueID /*IE*/
	&& document.compatMode  /*>=IE6*/
	&& !window.XMLHttpRequest /*<=IE6*/
	&& document.execCommand ;
	
	try{
		if(!!m){
			m("BackgroundImageCache", false, true) /* = IE6 only */ 
		}
		
	}catch(oh){};
})();
<!-- 

 -->