// JavaScript Document
jQuery(function( $ ){
	//subnav for work
	var generateImageLink = "";
	$('.tbtn').click(function(){
		if ($(this).attr('href')=='#')
		{
			$('#workHolder').fadeOut(100);
			//$('#content').css({'background-image' : 'none'});
			//show the stuff
			$('#headlineHolder img').show();
			$('#mainright p').show();
			$('#clientLogo').show();
			generateImageLink = "";
		}else{
			$('#headlineHolder img').hide();
			$('#mainright p').hide();
			$('#clientLogo').hide();
			$('#workHolder').fadeOut(2);
			//show images
			generateImageLink = $(this).attr('href');
			imageLink = "<img src='"+generateImageLink+"' alt='Full Size Image' />";
			//$('#content').css({'background-image' : 'url('+generateImageLink+')'});
			$('#workHolder').html(imageLink);
			$('#workHolder').fadeIn(500);
		}
		//swap out the button
		$('.clicktbtn').removeClass(' clicktbtn');
		$(this).addClass(' clicktbtn');
		return false;
	});
});