// base.js

if(typeof jQuery != 'undefined') {

	// applying png-fix in ie6 only
	$(document).ready(function() {
		if($.browser.msie && parseInt($.browser.version) < 7) {
			//try {
			//	document.execCommand('BackgroundImageCache', false, true);
			//} catch(e) {}
			
			$('#htmlmainmenu li').hover(function() {
				$(this).find('> ul').show(0);
			}, function() {
				$(this).find('> ul').hide(0);
			});
			
			$('.top-navigation').css('background-image',
				$('#htmlmainmenu').css('background-image')
			);
		}
	});
}