	$(document).ready(function(){
		$.localScroll();
		$("#content-left img").lazyload({
     	placeholder : "img/grey.gif",       
     	effect      : "fadeIn"
 });
// Contact Form Validation	
    $("#contactform").validate({
  rules: {
  contactname: {
	required: true,
	minlength: 3
},
	subject: {
	required: true,
	minlength: 10
},
    message: {
      required: true,
      minlength: 25,
      maxlength: 500
    }
  }
});

//Full Caption Sliding (Hidden to Visible)
	$('.boxgrid.captionfull').hover(function(){
	$(".cover", this).stop().animate({top:'0px'},{queue:false,duration:160});
	$(".projtitle", this).stop().animate({left:'0px'},{queue:false,duration:240});
	$(".projlauncher", this).stop().animate({right:'0px'},{queue:false,duration:240});
	}, function() {
	$(".cover", this).stop().animate({top:'260px'},{queue:false,duration:240});
	$(".projtitle", this).stop().animate({left:'-330px'},{queue:false,duration:240});
	$(".projlauncher", this).stop().animate({right:'-220px'},{queue:false,duration:240});
});
// FadeIn Tweets
	$('#twitterl').fadeIn(2000);
});

