$(document).ready(function() 
{
	// Spin logo
	$('.spinlogo a').hover(function()
	{
		$(this).parent('.spinlogo').find('span').slideToggle('slow');
	},function()
	{
		$(this).parent('.spinlogo').find('span').slideToggle();
	});
	
	
	// Home slider
    $('#slideshow').cycle(
	{
        fx: 'fade',
        speed: 'slow',
        timeout: 5000,
        pager:  '#thumbnails',
		cleartype:true,
		cleartypeNoBg:true,
		pager:'.thumb-item',
		pagerAnchorBuilder: function(idx, slide) {
            // return sel string for existing anchor
            return '.thumb-item:eq(' + (idx) + ') a';
        }

    });

	
	
});
	
