﻿// ShadowBox //
Shadowbox.init({
    handleOversize: "drag",
    slideshowDelay: 3
});
// /ShadowBox //


// topMenu Input Animate //
$(document).ready(function() {
	
	$('.topMenu input').focus(function() {
		$(this).animate({ width: '150px', color: '#2a2a2a'}, 400);
	});
	$('.topMenu input').blur(function() {
		$(this).animate({ width: '100px', color: '#cccccc'}, 400);
	});
});
// /topMenu Input Animate //



// Social Network //
$(function(){
    $(".socialNetwork ul li img").bubbleup({tooltip: true, scale:70});
});
// /Social Network //



// Agent Login //
$(document).ready(function(){

$('#agentLoginBtn').click(function() {
      $('.overlayModal, .agentLoginBox').fadeIn(0, function() {
      });
    });

$('.close, .overlayModal').click(function() {
      $('.overlayModal, .agentLoginBox').fadeOut(0, function() {
      });
    });
})
// /Agent Login //






// Form Validation
$("document").ready(function() {
     $("#aspnetForm").validationEngine();
     })
// /Form Validation



















