jQuery(function ($) {
	/* You can safely use $ in this code block to reference jQuery */


		$(function(){
			$('#slides').slides({
				preload: true,
				play: 5000,
				pause: 2500,
				hoverPause: true
			});
		});


/* You can safely use $ in this code block to reference jQuery */
});


jQuery(function ($) {
	/* You can safely use $ in this code block to reference jQuery */

$(document).ready(function() {

	$(".project-popup").fancybox({
		'titlePosition'		: 'inside',
		'transitionIn'		: 'none',
		'transitionOut'		: 'none'
	});


});

/* You can safely use $ in this code block to reference jQuery */
});


jQuery(function ($) {
	/* You can safely use $ in this code block to reference jQuery */
	$(document).ready (function(){
		$("#accordion .block").hide();
		$("#accordion h2").click(function(){
			$(this).next(".block").slideToggle("fast")
			.siblings("block:visible").slideUp("slow");
			$(this).toggleClass("active");

		});
	});
	/* You can safely use $ in this code block to reference jQuery */
});
