$(document).ready(function(){
	
	$('#month_view tr td').mouseover(function(){
		if ($(this).find('a.inner_link').attr('href') != undefined ) {
			$(this).toggleClass('hover');
			this.style.cursor = 'pointer'
		}
	});
	
	$('.#month_view tr td').mouseout(function(){
		if ($(this).find('a.inner_link').attr('href') != undefined ) {
			$(this).toggleClass('hover');
		}	
	});
	
	$('.#month_view tr td').click(function(){
		if ($(this).find('a.inner_link').attr('href') != undefined ) {	
			interior_href = $(this).find('a.inner_link').attr('href');
			this.style.cursor = 'pointer'
			window.open(interior_href, "IWYS");
		}
	});	
	
	$(function() {
		$(".inner_link").attr("target","IWYS");
	});
});
