/* Home Page slider */
	$(function(){
		$('.showcase').slides({
			effect: 'fade',
			container: 'entry',
			preload: false,
			play: 5000,
			generateNextPrev: false,
			generatePagination: false
		});
	});
	
	
/* Custom Lightbox */
	$('.mylightbox').click(function(){
		$('.myLightboxOverlay').show();
		$('.myLightboxOverlay_Close').click(function(){
			$(this).hide();
		});
	});
	
	$('#get-wp-lightbox').click(function(){
		$('#wp-lightbox').show();
	});

/* Prevent spam, bitch! */
	function emailMe() {
		var x = 'findme&cristiancazacu*c_o_m'
		var y = 'mai'
		var z = 'lto'
		var s = '?subject='
		x = x.replace('&','@')
		x = x.replace('*','.')
		x = x.replace('_','')
		x = x.replace('_','')
		var b = y+z+':'+x+s
		window.location=b
	}
