jQuery(document).ready(function() {
	jQuery('#slider_content')
		.cycle({
			fx: 'scrollVert',
			timeout: 0, 
			speed: 700,
			next:   '#next', 
			prev:   '#prev',
			pause: 1
		});
		
	$.fn.supersized.options = {  
	  startwidth: 1024,  
	  startheight: 768,  
	  minsize: .5,  
	  slideshow: 0
	};  
	$('#supersize').supersized();  

  $('a[tooltip]').each(function()
   {
      $(this).qtip({
         content: $(this).attr('tooltip'), // Use the tooltip attribute of the element for the content
         position: {
            corner: {
               tooltip: 'topMiddle',
               target: 'bottomMiddle'
            }
         },
         style: {
            border: {
               width: 1,
               radius: 5,
							 color: '#F6EDFC'
            },
            background: '#151517',
            padding: 10,
            tip: true,
            name: 'dark'
         }
      });
   });
});
