﻿$(document).ready(function(){
//	$('table.calendar img').each(function(){
//		$(this).css('margin-top', 58 - $(this).height() / 2 + 'px');
//    })

	$('#lg2').click(function(){
		$('#log1').fadeOut('fast');
		$('#log2').fadeIn('middle');
	})

	$('#lg1').click(function(){
		$('#log2').fadeOut('fast');
		$('#log1').fadeIn('middle');
	})
	$('div.topNav ul li img').hover(
								  function(){
									  $(this).animate({width:74, height:74, marginTop:"-6", marginLeft:"8"}, 200);
									  $(this).parent().animate({fontSize:"12px", marginLeft:"-11"}, 200);
									  },
								  function(){
									  $(this).animate({width:58, height:58, marginTop:"0", marginLeft:"5"}, 100);
									  $(this).parent().animate({fontSize:"10px", marginLeft:"0"}, 100);
									  }
								  )
});
$(window).resize(function(){
});

