// JavaScript Document
function isValidEmail(str) { 
	var filter=/^([\w-]+(?:\.[\w-]+)*)@((?:[\w-]+\.)*\w[\w-]{0,66})\.([a-z]{2,6}(?:\.[a-z]{2})?)$/i
	if (!filter.test(str)){
	return false
	}else{
		return true
	}
}
$(document).ready(function() {
//	$(document).pngFix(); 
//	$("a[rel='gallery']").colorbox({transition:"fade"});
	$('#slideshow ul').innerfade({
					animationtype: 'fade',
					speed: 1550,
					timeout: 2000,
					type: 'random'	});
					
					$('.gallery a').lightBox();
			        

});
