$(document).ready(function() {

	// HOMEPAGE SLIDER
	
	$('#item-wrapper').cycle({ 
		fx: 	'scrollLeft',
		next:   '.next', 
    	prev:   '.prev'
	});
	
	// FACYBOX 
	
	$('a[rel*=facybox]').facybox(); 
	
	// POST IMAGE HOVER 
	
	$(".thumb").fadeTo("slow", 0.5);
	$(".thumb").hover(function(){
		$(this).fadeTo("slow", 1.0);
			},function(){
		$(this).fadeTo("slow", 0.5);
	});
	
	// CONTACT FORM 
		
	$('#contactform').ajaxForm({
	   	target: '#error',
	   	beforeSubmit: function() {
		$('#error').append('<p class="loading">Sending your message...</p>');
		},
		success: function() {
		$('#error p.loading').fadeOut();
		$('#error').fadeIn('slow');
		}
	});
	
});