jQuery(document).ready(
	function () {
		// Share Links
		/*
		$('div.blogshare').hide();
		$('a.blogfcshare').click(function() {
			if($('div.blogtags', this.parentNode.parentNode).css('display') != 'none') {
				$('div.blogtags', this.parentNode.parentNode).slideUp('slow');
			}
			$('div.blogshare', this.parentNode.parentNode).slideToggle('slow');
			return false;
		});*/
		
		// Twitter Ajax
		getTwitters('tweet', { 
		  id: 'GoApeTribe', 
		  count: 1, 
		  enableLinks: true, 
		  ignoreReplies: true, 
		  clearContents: true,
		  template: '%text%'
		});

		
		// Print Function
		jQuery('a.blogfcprint').click(function() {
			jQuery('div.blogarticle').removeClass('printhide');
			jQuery('div.blogarticle').addClass('printhide');
			jQuery(this).parent('div.blogfunctions').parent('div.blogarticle').removeClass('printhide');
			window.print();
			return false;
		});
		
		// Tags Links
		jQuery('div#bloghomepage div.blogtags').hide();
		jQuery('a.blogfctags').mouseover(function() {
			if(jQuery('div.blogshare', this.parentNode.parentNode).css('display') != 'none') {
				jQuery('div.blogshare', this.parentNode.parentNode).slideUp('slow');
			}
			jQuery('div.blogtags', this.parentNode.parentNode).slideToggle('slow');
			return false;
		});


	}
);
