﻿// base.js
if(typeof jQuery != 'undefined') {
	$(document).ready(function() {
		
		// opacity im menu
		$('.wrapper .header .mainmenu ul li ul').css({
				'opacity' : '0.9',
				'filter' : 'alpha(opacity=90)',
				'-moz-opacity' : '0.9',
				'-khtml-opacity' : '0.9'
		});
		
	});
}