/* functions.js */


/* tab hover */
function tabHover(){
	var tmp_li, tmp_a, tmp_span, tmp_span_color;
	$('ul.tabs').children('li').hover(function(){
		tmp_li = $(this).css('background-image');
		tmp_a = $(this).find('a').css('background-image');
		tmp_span = $(this).find('span').css('background-image');
		tmp_span_color = $(this).find('span').css('color');
		$(this).css('background','#D9E2EA');
		$(this).find('span').css({
			backgroundImage:'url(images/bg_tab-r.gif)', color: '#2A6EBB'});
		$(this).find('a').css('background-image','url(images/bg_tab-l.gif)');
	},function(){
		
		$(this).css('background-image',tmp_li);
		$(this).find('a').css('background-image',tmp_a);
		$(this).find('span').css({backgroundImage: tmp_span, color: tmp_span_color});
	});
}

/* dropdown menu */
function dropdownMenu(){
	//var tmp;
	$('ul#menu').children('li')
		.hover(function(){
			if ($(this).children().is('ul')){
				if ($.browser.msie) {
					//tmp = $(this).height();
					$(this).height(18);
				}
				$(this).children('ul').show();
				$(this).children('a').css('background-color','#E2EAF3');
			}
		},function(){
			if ($(this).children().is('ul')){
				if ($.browser.msie) {
					tmp = $(this).height();
					$(this).height(20);
				}
				$(this).children('ul').hide();
				$(this).children('a').css('background-color','#fff');
			}
		});
}

$(document).ready(function(){
	tabHover();
	dropdownMenu();
});