$(document).ready(function(){
	$('a.hidden-link').click(function(event) {
		event.preventDefault();
		var content = $(this).attr("id");
		var num = content.substr(12);
		$('.service-image').hide();
		for(i=1;i<8;i++)
		{
			$('.service-images').hide();
			$('.image-0').hide();
			$(".hidden-link").children('span').hide('fast');
			if(i!=num)
			{
				var div_hd = "#hidden-block-" + i;
				$(div_hd).hide('fast');
			}else{
				var div_hd = "#service-image .image-" + i;
				$(div_hd).show('slow');
			}
			
		}
		//$(this).children('span').show();
		var div = "#hidden-block-" + num;
		$(div).toggle('slow');
	});

	$('a.staff-link').click(function(event) {
		var id = $(this).attr("rel");
		$('#staff-image').hide();
		$('.staff-details').hide();
		$('#staff-' + id).show();
	});
	
	jQuery(function($){
        $(".twitter-feed").tweet({
			count: 1,
			username: "GreenZoneCSS",
			loading_text: "Loading…"
		}).bind("loaded",function(){$(this).find("a").attr("target","_blank");});
	});
	
}); 
