$(function(){


$("#slides").slides({
				play: 5000,
				pause: 2500,
				crossfade: true,
				effect: 'fade',
				hoverPause: true});

	$('#flickr-feed').jflickrfeed({
		limit: 10,
		qstrings: {
			id: '26901611@N03'
		},
		itemTemplate: '<li>'+
						'<a rel="colorbox" href="{{image}}" title="{{title}}">' +
							'<img src="{{image_s}}" alt="{{title}}" />' +
						'</a>' +
					  '</li>'
	}, function(data) {
		$('#flickr-feed a').fancybox({padding:0,overlayColor:'#000'});
	});
	// SPAM EMAIL FIX  

    $('.email').each(function(i) {
			var ths = $(this);
			var spn =  ths.find('span');
        var text = spn.text();
        		text = text.replace(" at ", "@");
         ths.attr('href', 'mailto:' + text);
            spn.text(text);
        });



	

});
