	//jQuery Easing Plugin  
	// t: current time, b: begInnIng value, c: change In value, d: duration
	jQuery.easing['jswing'] = jQuery.easing['swing'];
	
	jQuery.extend( jQuery.easing,
	{
		easeInOutQuart: function (x, t, b, c, d) {
			if ((t/=d/2) < 1) return c/2*t*t*t*t + b;
			return -c/2 * ((t-=2)*t*t*t - 2) + b;
		},
		easeInOutCirc: function (x, t, b, c, d) {
			if ((t/=d/2) < 1) return -c/2 * (Math.sqrt(1 - t*t) - 1) + b;
			return c/2 * (Math.sqrt(1 - (t-=2)*t) + 1) + b;
		}
	}); //end jQuery Easing Plugin


$(document).ready(function(){
  
  // Links
  $("a[rel=external]").attr('target', '_blank');
  
  // Form
	$("#contact2 label").inFieldLabels();
	$("#contacthome label").inFieldLabels();
	$("#commentform label").inFieldLabels();
	$("textarea").elastic();
	$("div.cc-label label").inFieldLabels();

$("#creator h5").hover(
function() {
$(this).stop().animate({"backgroundImage": "http://discoveringsoul.com/wp-content/themes/discsoul/images/lolight.png"}, "slow");
},
function() {
$(this).stop().animate({"backgroundImage": "http://discoveringsoul.com/wp-content/themes/discsoul/images/lolight-up.png"}, "slow");
});


});
