﻿$(document).ready(function () {
	
	jQuery.validator.messages.required = "";
	jQuery.validator.messages.email = "";
	$("#donateform").validate({
		
	});
	
	$("#loginform").validate();

    $(".content-topic").jScrollPane({ scrollbarWidth: 10, scrollbarMargin: 10, dragMaxHeight: 10 });
    
    $('#slider').after('<ul id="gallery-pager">').cycle({
        fx: 'fade',
        speed: 1000,
        timeout: 0,
        pager: '#gallery-pager',

        // callback fn that creates a thumbnail to use as pager anchor 
        pagerAnchorBuilder: function (idx, slide) {
            return '<li><a href="#"><img src="' + jQuery(slide).find("img").attr("src") + '" width="63" height="41" /></a></li>';

        }
    });
});


