(function($) { // Making $ accessible even in noConflict
  $(document).ready(function() {
    // Adding placeholders for form fields
    if($.fn.placeholder)
    {
      $(".placeholder").placeholder();
    }

    // Setting up action url for contact form
    var contactForm = $("#contact-form").attr('action', '/cmail.php');
		
    // Adding basic validation to contact form
    if($.fn.checkRequired)
    {
      contactForm.checkRequired();
		}

    if($.fn.easySlider)
    {
      $("#billboard").easySlider({
        auto: true,
        continuous: true,
        controlsShow: false,
        speed: 500,
        pause: 5000
      });
    }
		
		$('.celebrity-quotes img').hover(function () {
			$(this).animate({
				width: 115
			});
		}, function () {
			$(this).animate({
				width: 100
			});
		});
		
		$('#appointments').attr('action', '/appoint.php');
  });
})(jQuery);
