$(document).ready(function(){
	//NAV
	$('.show_L2').click(function(){
		$('.show_L2').removeClass('navOn');
		$(this).addClass('navOn');
		var thisId = $(this).attr('id');
		var myL2 = thisId.replace('L1_','L2_');
		$('.ulL2').addClass('L2Hide');
		$('#'+myL2).removeClass('L2Hide');
	});
	//CYCLE
	$('.ad-101').cycle({ fx: 'fade' });
	$('.ad-102').cycle({ fx: 'fade' });
	$('.ad-103').cycle({ fx: 'fade' });
	
	$('.home-boxbtm').cycle({ fx: 'fade' });
	
	// Increase Font Size
	$(".bigger").click(function(){
		var currentFontSize = $('html').css('font-size');
		var currentFontSizeNum = parseFloat(currentFontSize, 10);
		var newFontSize = currentFontSizeNum + 2;
		$('.maincontent *').css('font-size', newFontSize);
		return false;
	});
	// Decrease Font Size
	$(".smaller").click(function(){
		var currentFontSize = $('html').css('font-size');
		var currentFontSizeNum = parseFloat(currentFontSize, 10);
		var newFontSize = currentFontSizeNum - 2;
		$('.maincontent *').css('font-size', newFontSize);
		return false;
	});
	//POP OUTBOUND LINKS
	$('a').each(function(){
		var myLink = $(this).attr('href');
		var myString = myLink.substring(0,22);
		if(myString != 'http://www.gladinc.org'){
			$(this).attr('target', '_blank');
		}
	});
	$("#picasa").pwi({
        username: 'gladphotos'
    });
	$('div#news_cycle_wrapper').cycle();
});