$(document).ready(function() {
	$("#regform").validate();
	$("#logform").validate();
	$("#contactform").validate();
	$("#profileform").validate();
	
    $('#textcontent').find('.toggle').hide();
    $('.do_toggle').click(function(){
        var theID = $(this).attr( 'id' );
        $('#textcontent').find('#dt-' + theID ).toggle();
    })
    
    $('.do_toggle_close').click(function(){
        $('#textcontent').find('.toggle').hide();
    })
    
    $("#apple img[rel]").overlay({effect: 'apple'});



});

