jQuery.noConflict();

jQuery(document).ready(function(){

	// Keep parent nav item on
	jQuery('nav ul ul').hover(function(){
	    jQuery(this).parent().children('a').addClass('hovering');
	}, function() {
	    jQuery(this).parent().children('a').removeClass('hovering');
	});

	// Add class to main navigation
	jQuery("nav").find("li:last-child").addClass("last");

	// Change special instructions text
	var details = jQuery('.capturedetails'); 
	details.html(details.html().replace("Special Instructions","<br />Personalized Details"));

});
