// Common

$(document).ready(function(){
						   
	$("#contactUs").validate();
	
	$('#donate-images').cycle('fade');
	
	var arrUrl = document.location.href.split('/');
	var pageName = arrUrl[arrUrl.length - 1];
	var rootBreadcrumbUrl = $('#rootBreadcrumb a').attr('href');
	
	//set active class on main menu
	$('#nav li a').each(function (a, b) {
	    var linkName = $(b).attr('href');
	    if (rootBreadcrumbUrl.toLowerCase().indexOf(linkName.toLowerCase()) >= 0) {
	        $(this).parent().addClass('active');
	    }
	});
	
	
	//set active class on sub menus
	$('.comp-sub-nav dd a').each(function(a,b) {
	    var linkName = $(b).attr('href');

	    if (pageName.toLowerCase().indexOf(linkName.toLowerCase()) >= 0) {
	        $(this).parent().addClass('active');
	    }
	    
	});	
});

function redirect(url, time) {
    loc = "go('" + url + "')";
    setTimeout(loc, time);
}

function go(url) {
    location.href = url;
}