$(document).ready(function(){

/* Startpage */
	$(".box").click(function(){
	  window.location=$(this).find("a.arrow").attr("href"); return false;
	});

/* End Startpage */




$("a[href$='.pdf']").addClass("pdf");




});




/* begin phone form */
$(document).ready(function(){


$("#ajax-phone-form").submit(function(){
var str = $(this).serialize();

   $.ajax({
   type: "POST",
   url: "phone.php",
   data: str,
   success: function(msg){
    
$("#note").ajaxComplete(function(event, request, settings){

if(msg == 'OK')
{
result = '<div class="notification_ok"><small>Tack! Vi h&ouml;r av oss inom kort!</small></div>';
/*$("#fields").hide();*/
$("#help").hide();
}
else
{
result = msg;
$("#help").hide();
}

$(this).html(result);

});

}

 });

return false;

});

});

/* end phone form */









