var showText = "More Projects »";
var hideText = "Hide »";


jQuery(document).ready(function($) {
	
	// Quit if we have no candidates
	if( $('#hideTrigger').length != 1 || $(".hideMe").length < 1 )
		return;
	
	// Assign text to trigger
	$('#hideTrigger').text(showText);
	
	
	
	// Handle click event
	$('#hideTrigger').click(function(ev){
		
		// Prevent the default action of the event --> stop the href in the 
		// anchor from being followed before the animation has started
		ev.preventDefault();		
	
		// Assign new text value and switch attribut val
		if( $('#hideTrigger').attr('value') == 'isHidden' ) {
			$('#hideTrigger').text(hideText);
			$('#hideTrigger').attr('value', 'isShowing');
		} 
		else {
			$('#hideTrigger').text(showText);
			$('#hideTrigger').attr('value', 'isHidden');
		}
			
		// Animate
		$(".hideMe").slideToggle('slow');
		
	});

});
