//     jQuery.noConflict();

     // Put all your code in your document ready area

     jQuery(document).ready(function($){

     // Do jQuery stuff using $ this where the functions need to go   


$(document).ready(function(){


	$('div#slideshow').cycle({ 
    fx:     'fade', 
	timeout: 9000, 
    delay:  -2000,
    next:   'a#next', 
    prev:   'a#prev',
	pause:   1 
	});


	});

// ======================= BULLETPOINT TOOGLE =========================

	$("div#view_more_bullets").hide(); 

	$("a.view_more_link").click(function () {
		$("div#view_more_bullets").slideToggle('1000', function() {
		// Animation complete.
	  });
	});  
			
	// ======================= Darren =========================		
				$("div#view_more_darren").hide(); 

	$("a.view_more_link_darren").click(function () {
		$("div#view_more_darren").slideToggle('1000', function() {
		// Animation complete.
	  });
	});  
// ======================= Andrew =========================		
				$("div#view_more_andrew").hide(); 

	$("a.view_more_link_andrew").click(function () {
		$("div#view_more_andrew").slideToggle('1000', function() {
		// Animation complete.
	  });
	});  
// ======================= Matt =========================		
				$("div#view_more_matt").hide(); 

	$("a.view_more_link_matt").click(function () {
		$("div#view_more_matt").slideToggle('1000', function() {
		// Animation complete.
	  });
	});  
	
// ======================= simon =========================		
				$("div#view_more_simon").hide(); 

	$("a.view_more_link_simon").click(function () {
		$("div#view_more_simon").slideToggle('1000', function() {
		// Animation complete.
	  });
	}); 	
		
	
// ======================= barry =========================		
				$("div#view_more_barry").hide(); 

	$("a.view_more_link_barry").click(function () {
		$("div#view_more_barry").slideToggle('1000', function() {
		// Animation complete.
	  });
	}); 	
	
	// ======================= rachel =========================		
				$("div#view_more_rachel").hide(); 

	$("a.view_more_link_rachel").click(function () {
		$("div#view_more_rachel").slideToggle('1000', function() {
		// Animation complete.
	  });
	}); 
	
		// ======================= kraig =========================		
				$("div#view_more_kraig").hide(); 

	$("a.view_more_link_kraig").click(function () {
		$("div#view_more_kraig").slideToggle('1000', function() {
		// Animation complete.
	  });
	}); 
	
		// ======================= lara =========================		
				$("div#view_more_lara").hide(); 

	$("a.view_more_link_lara").click(function () {
		$("div#view_more_lara").slideToggle('1000', function() {
		// Animation complete.
	  });
	}); 
	
});
