// COLLAPSIBLE DIV FUNCTIONS & SETTINGS
animatedcollapse.addDiv('blindhidden', 'fade=0, speed=1000, height=700px, persist=0 ,hide=0')
animatedcollapse.init()

$(document).ready(function(){
	
// TOOLTIP FUNCTIONS & SETTINGS
$(".cord-popup a").hover(function() {
	$(this).next("em").stop(true, true).animate({opacity: "show", top: "-60"}, "slow");
	}, function() {
	$(this).next("em").animate({opacity: "hide", top: "-70"}, "fast");
});

// FORM VALIDATION FUNCTIONS & SETTINGS
$("#commentForm").validate();
});

