jQuery(document).ready(function($) {
	$('#quote-list').cycle({
		fx:     'scrollUp',
        timeout:  5000,
		width:    700,
		height:   75,
        prev:    '#prevquote',
        next:    '#nextquote'
        
	});
	
	//$('#slideshow').shuffle();
	$('#slideshow').cycle({
		fx: 'fade', // choose your transition type, ex: fade, scrollUp, shuffle, etc...
		timeout:  5000,
		prev:    '#prev',
        next:    '#next'
	});

	$('select').uniform();
	 	
	//$("a[rel=example_group]").fancybox({
		//'transitionIn'		: 'none',
		//'transitionOut'		: 'none'
	//});
	$('.fearture-post-list a span').css({'opacity':'0'});
 	$('.fearture-post-list a').hover(
	function() {
		$(this).find('span').stop().fadeTo("fast", 0.7);
	},
	function() {
		$(this).find('span').stop().fadeTo("fast", 0);

	}); 

 	
 	$(function() {
		var msie6 = $.browser == 'msie' && $.browser.version < 7;
		if (!msie6) {
			var top = $('.floating_share').offset().top	- parseFloat($('.floating_share').css('margin-top').replace(/auto/, 0));
				$(window).scroll(function (event) {
			var y = $(this).scrollTop();
				if (y >= top) {
					$('.floating_share').addClass('fixed');
				}
				else {
					$('.floating_share').removeClass('fixed');
				}
			});
	}
	});
});
