jQuery(document).ready(function(){
	jQuery('.download-pdf').css('display','none');
	
	jQuery('.switch').click(function() {
		jQuery(this).prev('.switcher').animate({height:'toggle',opacity:'toggle'}, 'fast');
		
		
		if (jQuery(this).html()=='View more') {
			jQuery(this).html('&and; View less');
			jQuery(this).css('background-position','right bottom');
		}
		else {
			jQuery(this).html('View more');
			jQuery(this).css('background-position','right 4px');
			}
		
		return false;
	});
	
	
});
