$(document).ready(function() {

	$('#panel-slider-home').loopedSlider({
		container: '.panel-container', // Class or ID of main container
		slides: '.panel-slides', // Class or ID of slide container
		pagination: '.panel-pagination', // Class or ID of pagination container
		containerClick: false, // Click container for next slide
		autoStart: 8000, // Set to positive number for auto start and interval time
		restart: 8000, // Set to positive number for restart and restart interval
		slidespeed: 500, // Speed of slide animation
		fadespeed: 500, // Speed of fade animation
		autoHeight: false // Set to positive number for auto height and animation speed
	});
	
	$(".clicktoregister").click(function(){
		$('#RegisterForm #MemberEmail').pulse({
			backgroundColors: ['#ffffff','#f29400'],
			speed: 200,
			runLength: 5
		});
	});
	
	$('.panel a').bigTarget({
    	hoverClass: 'bigtargethover',
		clickZone : 'div:eq(0)'
	});
	$('#feature-article h3 a').bigTarget({
    	hoverClass: 'featurehover',
		clickZone : 'div:eq(0)'
	});

	$('#recent-articles ul li a, #recent-posts ul li a').qtip({
		style: { 
		  width: 200,
		  padding: 5,
		  background: '#A2D959',
		  color: '#621a4b',
		  textAlign: 'left',
		  border: {
		     width: 7,
		     radius: 5,
		     color: '#A2D959'
		  },
		  name: 'dark',
		  tip: 'bottomRight'
		},
		position: {
			corner: {
				target: 'topLeft',
				tooltip: 'bottomRight'
			}
		}
	});

});
