jQuery(function($){

	$('#mastimagesinner').cycle({ 
    	fx:'fade',speed:1000,pause:1,timeout:4000,next:'.next',prev:'.previous'});

	var delay = 2000;

	$('.boxinner img, ul#social li').hover(
		function () {
			$(this).stop().fadeTo(delay/10,0.8);
		},
		function () {
			$(this).stop().fadeTo(delay/10,1);
		});
	
});	

