/* Custom JS for Maria Killam site */

$(document).ready(function() {
	/*.cycle({ 
	    fx: 'fade',
	    timeout: 5000,
	    speed: 1000,
	    pause: 1,
	    fit: 1
	}); */
	
	// gallery hover stuff
	$('.gallery-list li, .gallery-img li').mouseover(function() {
		var rel = $(this).attr('rel');
		$('.g-'+rel).addClass('active');
		$('.gi-'+rel).addClass('active');
	}).mouseout(function() {
		var rel = $(this).attr('rel');
		$('.g-'+rel).removeClass('active');
		$('.gi-'+rel).removeClass('active');
	});
	
});
