//-------------------------------------------------------------------------------Contact Form 
  
$(document).ready(function(){
$("form.contact").submit(function(){

var str = $("form.contact").serialize();

   $.ajax({
   type: "POST",
   url: "contact.php",
   data: str,
   success: function(msg){
    
$("#note").ajaxComplete(function(event, request, settings){

if(msg == 'OK') // Message Sent? Show the 'Thank You' message and hide the form
{
result = '<div class="notification_ok">Your message has been sent. Thank you!</div>';
$("#fields").show();
}
else
{
result = msg;
}

$(this).html(result);

});

}

 });

return false;

});

});



//------------------------------------------------------jQuery Lavalamp Plugin Call

$(function() {
	$("#nav-menu").lavaLamp({
		fx: "backout", 
		speed: 700,
		click: function(event, menuItem) {
			return true;
		}
	});
});


//Lightbox Plugin

$(function() {
        $('a.lightbox').lightBox();
    });


//Apply Last-Child & First-Child classes to dynamic links (recent posts)

$(function() {
	$("ul.footer-links li:last-child")
	.addClass("last-link");
	$("ul.footer-links li:first-child")
	.addClass("first-link");
});

//Preload all images in CSS
$(document).ready(function(){
  $.preloadCssImages();
});



