var $j = jQuery.noConflict();
var toAddress = '';
var fromAddress = '';
var success = '';
$j(document).ready(function() {
	//hide content in years other than the current year or selected year
	$j('.bloglinks').children('ul').children('li').each(function () {
		var url = window.location.pathname;
		var url1 = window.location.pathname+'/'+(new Date).getFullYear();
		var url2 = window.location.pathname+(new Date).getFullYear()
		if(url.indexOf($j(this).children('a').attr('href')) == -1 &&
			url1.indexOf($j(this).children('a').attr('href')) == -1 &&
			url2.indexOf($j(this).children('a').attr('href')) == -1) {
			$j(this).children('ul').hide();
		}
	});
	//make the selcted year and month bold
	$j('.bloglinks').find('li').each(function() {
		var url = window.location.pathname;
		if(url.indexOf($j(this).children('a').attr('href')) != -1) {
			$j(this).children('a').addClass('current');
		}
	});
	$j('.bloglinks').children('ul').children('li').children('a').click(function() {
		$j(this).parent().children('ul').slideToggle();
		return false;
	});

	$j('.shareEmail').fancybox();
});
