$(document).ready(function(){

	$('.navigation li').hover(function(){
		$('>.drop-n',this).fadeIn(150);
	},function(){
		$('>.drop-n',this).fadeOut(150);
	});

	if ($.browser.opera) {
		left = $('.m-window').css('left').replace('px','');
		$('.m-window').css('left',left - 21);
	};

	$('.open-m-w').click(function(){
		$('.m-window').removeClass('dnone');
		return false;
	})

	$('.btn-close a').click(function(){
		$(this).parent().parent().parent().addClass('dnone');
		return false;
	})

	$('.consultant a').click(function(){
		if ($(this).parent().hasClass('c-offline')) {
			return false;
		}
	})

	$('.currency dd a').click(function(){
		if ($(this).parent().hasClass('selected')) {
			return false;
		}
	})

})
