// ---------------------------  Document Ready
$(document).ready(function(){

	// Form Validation

	if ($('body#contactPg').length) {
	  $('#contactForm').validate();
  }
	//Open External Links in a New Window
	$('a[rel="external"]').click( function() {
	        window.open( $(this).attr('href') );
	        return false;
    });

	// $('a.cceasy[rel="external"]').click( function() {
	// 	        window.open( $(this).attr('href'),this,'width=765,height=680');
	// 	        return false;
	// 	    });
		
	// Call overlabel
    $("label.overlabel").overlabel();

	// Invitation Cycle
	$(function() {
		$('#invitationBox').cycle({
	 		timeout:       4000
		});
	});
	// Stamp Box Sidebar Cycle
	$(function() {
		$('#stampBox').cycle({
	 		timeout:       10000
		});
	});	
	
	
	// Search Form
	// $("input").focus(function() {
	// 		$(this).addClass("active");
	// 	});
	// 	$("input").blur(function() {
	// 		$(this).removeClass("active");
	// 	});


});  //---------------end of document ready



