/******************************
 Here we are using jQuery to cater for
 older versions of Internet Explorer.
 
 Lee Brooks
 <lee@webforma.co.uk
  Webforma Studios Ltd
******************************/


$(document).ready(function(){

  // Here we fix add classes to nth elements as IE8 does not support these...
   //$(".contact_message input[type=text]:nth-child(odd)").addClass("odd");
  $(".contact_message input[type=text]:nth-child(even)").addClass("even");
  
  
  $("#main #main_content .home_boxes section:last-child").css({ marginRight:"0px" })
  
  $(".content section:nth-child(3n)").css({ marginRight:"0px", float: "Right" })
  
  
  // Fix placeholders in IE8
  $('input[placeholder], textarea[placeholder]').placeholder();

});
