$(document).ready(function(){

$(function($){    
$('#slider').cycle({
fx:     'fade', // You can choose any effects that you like, from the Link reference : http://www.malsup.com/jquery/cycle/browser.html
speed:  'slow',
timeout: 6000,
pager:  '#pager',
pagerAnchorBuilder: function(idx, slide) {
// return sel string for existing anchor
return '#pager li:eq(' + (idx) + ') a';
}
				
});

});

//Testimonials
$(function($) {
$('#testimonialpage').cycle({
fx:     'fade', // You can choose any effects that you like, from the Link reference : http://www.malsup.com/jquery/cycle/browser.html
speed:  '1000',
next: '#next',  // selector for element to use as click trigger for next slide
prev: '#prev',  // selector for element to use as click trigger for previous slide
timeout: 20000,
pager:  '.right_gallery',
pagerAnchorBuilder: function(idx, slide) {
// return sel string for existing anchor
return '.right_gallery li:eq(' + (idx) + ') a';
}		
		
});	
});

//Portfolio thumbnail
$(document).ready(function(){

	$('.sidebar_image a').hover(function() {
		
		//Show darkenned hover over thumbnail image
		$(this).find('img').stop(true, true).animate({opacity:0.5},400);

	}, function() {
		
		//Hide darkenned hover over thumbnail image
		$(this).find('img').stop(true, true).animate({opacity:1},400);
			
	});

});

});