$.rand = function (min, max) {
    if( max ) {
        return Math.floor(Math.random() * (max - min + 1)) + min;
    } else {
        return Math.floor(Math.random() * (min + 1));
    }
}





$(document).ready(function(){

    $.preloadimages('/images/layout/nav_about_over.gif',
                    '/images/layout/nav_academics_over.gif', 
                    '/images/layout/nav_admissions_over.gif', 
                    '/images/layout/nav_contact_over.gif', 
                    '/images/layout/nav_support_over.gif' 
                    );

    $('.changemo').swapit('_over');
	
	$('#loginnow').click(function() {
		$('#loginform').show('fast');						  
	});
	
	if ($('#loginform').length) {
		$('#loginform').hide();
	}
	
	if ($('div#testimonialsRndm').length) {
		$('div#testimonialsRndm div').each(function () { $(this).hide(); });
		$('div#testimonialsRndm div').eq($.rand(0, $('div#testimonialsRndm div').length-1)).show();
	}
    






});