/*
Javascript by electricSnow.co.uk, powered by jquery.com

Please feel free to borrow, steal, abduct, and/or torture the code 
contained in this file. Though you need not give credit to
electricsnow.co.uk, a comment in your source code would help other 
developers.

Stay hungry, Stay foolish.

For more info vist http://jquery.com - New Wave Javascript

*/


$(document).ready(function(){
	// Initialise Cloak Email Address
	$('a.email').nospam({
		replaceText: true,
		filterLevel: 'normal'
	});
	// Cufon
	Cufon.replace('#col1 h1, .main_title');
	// Gallery
	$(function() {
		$(".image").click(function() {
		var image = $(this).attr("rel");
		$('#window').hide();
		$('#window').fadeIn('slow');
		$('#window').html('<img src="' + image + '"/>');
		return false;
		});
	});
	// Gallery Hover
	$("#thumbs").hover(
		function() {}, 
		function() {        
			$('#thumbs>li').fadeTo("fast", 1.0); 
		}
	);
});
