/*document.write('<link rel="stylesheet" href="http://www.smallbusinesssaturday.com/getfollowed/fancybox/jquery.fancybox-1.3.4.css">');*/

/*! jQuery v1.6.4 http://jquery.com/ | http://jquery.org/license */
/*
 * FancyBox - jQuery Plugin
 * Simple and fancy lightbox alternative
 *
 * Examples and documentation at: http://fancybox.net
 * 
 * Copyright (c) 2008 - 2010 Janis Skarnelis
 * That said, it is hardly a one-person project. Many people have submitted bugs, code, and offered their advice freely. Their support is greatly appreciated.
 * 
 * Version: 1.3.4 (11/11/2010)
 * Requires: jQuery v1.3+
 *
 * Dual licensed under the MIT and GPL licenses:
 *   http://www.opensource.org/licenses/mit-license.php
 *   http://www.gnu.org/licenses/gpl.html
 */

/*
$(document).ready(function(){
	$('body').append('<a id="fancyBtn" style="display:none;" href="http://www.smallbusinesssaturday.com/getfollowed/love-small-business.html">Follow</a>')
	//Overlay configuration
	$('#fancyBtn').fancybox({
		'width' : 860,
		'height' : 470,
		'type' : 'iframe'
	});   		
	var overlayBtn = $('#fancyBtn');

	//Bind twitter API follow event
	twttr.events.bind('follow', function(event) {
		test();
	});

	function test(){
		//Appear overlay when the follow event is succesfull
		overlayBtn.trigger('click');
		twttr.events.unbind('follow');
	}
	$("#fancybox-close").css({
	    display: "inline",
    	height: "45px",
	    right: "22px",
	    top: "25px",
	    width: "45px",
		background: "none"
	});
});

*/
