jQuery(function($){	
	$.easy.navigation();
	$.easy.tooltip();
	$.easy.popup();
	$.easy.external();
	$.easy.rotate();
	$.easy.cycle();
//	$.easy.forms();
	$.easy.showhide();
	$.easy.jump();
	$.easy.tabs();
	$.easy.accordion();	
	
	$('#slides').easyPaginate({step:1,auto:true,loop:true,nextprev:false});
	//$('<div id="watermark"></div>').prependTo('body');
	$('<div class="homeafter">&nbsp;</div>').insertAfter('.home');


});

/*
 * 	Easy Paginate 1.0 - jQuery plugin
 *	written by Alen Grakalic	
 *	http://cssglobe.com/
 *
 *	Copyright (c) 2011 Alen Grakalic (http://cssglobe.com)
 *	Dual licensed under the MIT (MIT-LICENSE.txt)
 *	and GPL (GPL-LICENSE.txt) licenses.
 *
 *	Built for jQuery library
 *	http://jquery.com
 *
 */

(function($){$.fn.easyPaginate=function(_1){var _2={step:4,delay:100,numeric:true,nextprev:true,auto:false,loop:false,pause:4000,clickstop:true,controls:"pagination",current:"current"};var _1=$.extend(_2,_1);var _3=_1.step;var _4,_5;var _6=$(this).children();var _7=_6.length;var _8,_9,_a;var _b=1;var _c;var _d=false;function _e(){clearTimeout(_c);_4=((_b-1)*_3);_5=_4+_3;$(_6).each(function(i){var _f=$(this);_f.hide();if(i>=_4&&i<_5){setTimeout(function(){_f.fadeIn("fast");},(i-(Math.floor(i/_3)*_3))*_1.delay);}if(_1.nextprev){if(_5>=_7){_9.fadeOut("fast");}else{_9.fadeIn("fast");}if(_4>=1){_a.fadeIn("fast");}else{_a.fadeOut("fast");}}});$("li","#"+_1.controls).removeClass(_1.current);$("li[data-index=\""+_b+"\"]","#"+_1.controls).addClass(_1.current);if(_1.auto){if(_1.clickstop&&_d){}else{_c=setTimeout(_10,_1.pause);}}};function _10(){if(_1.loop){if(_5>=_7){_b=0;_e();}}if(_5<_7){_b++;_e();}};this.each(function(){_8=this;if(_7>_3){var _11=Math.floor(_7/_3);if((_7/_3)>_11){_11++;}var ol=$("<ol id=\""+_1.controls+"\"></ol>").insertAfter(_8);if(_1.nextprev){_a=$("<li class=\"prev\">Previous</li>").hide().appendTo(ol).click(function(){_d=true;_b--;_e();});}if(_1.numeric){for(var i=1;i<=_11;i++){$("<li data-index=\""+i+"\">"+i+"</li>").appendTo(ol).click(function(){_d=true;_b=$(this).attr("data-index");_e();});}}if(_1.nextprev){_9=$("<li class=\"next\">Next</li>").hide().appendTo(ol).click(function(){_d=true;_b++;_e();});}_e();}});};})(jQuery);
