$(document).ready(function() {

	if ($('ul.home_slideshow').length) {
		$('ul.home_slideshow').cycle({
			easing: 'easeOutExpo',
			timeout: 3000,
			speed: 3000
			});		
	}
	
    $('a[rel=external]').click(function(){
        //open new window
        var myurl = $(this).attr('href');
        window.open(myurl, 'external');
        return false;
        });
	
	if ($('img.genie_intro').length) {
		$('img.genie_intro').delay(1500).animate({bottom: 0}, 800, 'easeOutExpo');		
	}

	if ($('a.fancybox').length) {
		$('a.fancybox').fancybox({
			'speedIn'		:	200, 
			'speedOut'		:	200, 
			'overlayShow'	:	true
		});	
	}
	
	$('form.generic').submit(function(){
		alert('This is just a sample. Sign Up Free to create this survey!');
		return false;
		});
	
	//preload the Genie image
	if ($('img.genie_intro').length) {
		preload([
		    'http://cdn.goodgecko.com/public/images/home/tour_genie.png',
		]);		
	}

	function preload(arrayOfImages) {
	    $(arrayOfImages).each(function(){
	        $('<img/>')[0].src = this;
	        // Alternatively you could use:
	        // (new Image()).src = this;
	    });
	}
	
	if ($('div.plans_container').length) {
		$('p.plan_feature a').qtip({ 
		position: { corner: { target: 'rightMiddle', tooltip: 'leftMiddle'}},
		style: { name: 'cream', tip: true } })	
	}
	
});
