// JavaScript Document
	// initialise plugins
		jQuery(document).ready(function($)  { 
$('.home-cycle').cycle({
	fx:      'fade', 
    speed:    1000, 
    timeout:  5000 
	});
	
$('.designer-cycle').cycle({
	fx:      'fade', 
    speed:    1000, 
    timeout:  5000 
	});
	
$(".gallery-item").click(function(){
     window.location=$(this).find("a").attr("href");
     return false;
});

$('.gallery-item').hover(function() {
$(this).addClass('hover');
}, function() {
$(this).removeClass('hover');
	});

$('.services-cycle').cycle({
	fx:      'fade', 
    speed:    1000, 
    timeout:  5000 
	});

$('#portfolio-wrapper').cycle({
	fx:      'fade', 
    speed:    1000, 
    timeout:  5000,
	next:   '#next', 
    prev:   '#prev', 
    pause:   1
	});
	
    }); 