$('document').ready(function(){
	fontSize(".fontResizer", "#left_content", 14, 15, 16);
});

<!--news slider-->

$(document).ready(function() {
  
  var ticker = new Ticker23($('#ticker_content ul'), {'animation': 'fade', 'speed': 'slow', 'cycle': 4000})
  ticker.bindBackButton($('#ticker_back'))
  ticker.bindPauseButton($('#ticker_play_pause'))
  ticker.bindNextButton($('#ticker_next'))
})

<!--skip to top-->

$(document).ready(function() {
	anchor.init()
});

anchor = {
	init : function()  {
		$("a.anchorLink").click(function () {	
			elementClick = $(this).attr("href")
			destination = $(elementClick).offset().top;
			$("html:not(:animated),body:not(:animated)").animate({ scrollTop: destination}, 350 );
		  	return false;
		})
	}
}

<!--login area slider-->


$(document).ready(function() {
   
 	
	$("#login_body").hide();

	$("#btn-slide").click(function(){

      if ($("#login_body").is(":hidden")) {
        $("#login_body").slideDown("normal");
		
	return false;
	
      } else {
        $("#login_body").slideUp("normal");
		
	return false;

      }
	
   });
   
 /*the close btn */
	$(".close-slide").click(function(){

        $("#login_body").slideUp("normal");
		return false;
		});

});

<!--stripe tables-->

 $(document).ready(function(){
 
 $(".stripetable tr:nth-child(even)").addClass("alt");

 });

  $(document).ready(function(){
 
 $(".stripetable_body_small tr:nth-child(even)").addClass("alt");

 });
  
    $(document).ready(function(){
 
 $(".stripetable_2 tr:nth-child(even)").addClass("alt");

 });
	
 $(document).ready(function(){
 
 $(".stripetable_3 tr:nth-child(even)").addClass("alt");

 });