//validation contact form

 $(document).ready(function(){
    $("#contact_form").validate();
  });


//back to top

$(function() {
	$('.backtotop').click(function(){
		$('html, body').animate({scrollTop:0}, 'slow');
	});
});


$(function() {
$('form#comment_form textarea').magicpreview('mp_');
});

//slow scroll to link


var jump=function(e)
{
       e.preventDefault();
       var target = $(this).attr("href");
       $('html,body').animate(
       {
               scrollTop: $(target).offset().top
       },2000,function()
       {
               location.hash = target;
       });

}

$(function()
{
       $('a[href*=#]').bind("click", jump);
       return false;
});


//full click on div for archives

$(document).ready(function(){

	$(".col_main_sub").click(function(){
	  window.location=$(this).find("a").attr("href"); return false;
	});

});




