/*-----------------------------------------*/
//	Include this file into the main index file.
//	This file contains all jquery, javascript, and ajax functions that may be used by any of the included modules.
//	Please be sure to comment each entry with its purpose.
//	Try to use ajax for any data communication as opposed to page-reloading php post and get form submissions.
/*-----------------------------------------*/
$(document).ready(function() {
	
	$('.work_picture_chooser > img').click(function(){
		var src= $(this).attr('src');

		$(this).parent().prev('.work_picture_container').children('img').animate({
																		opacity: 0,
																		left: '+=50'
																	  }, 500, function() {
																		// Animation complete.
																		$(this).attr('src', src);
																		
																		$(this).animate({
																			opacity: 1,
																			left: '0'
																		  }, 500);
																	  });
																	  
		
	});
});


