$(document).ready(function() {

	$('img').bind('dragstart', function(event) { event.preventDefault(); });

	//  Detect iOS device to remove .hashover
	var deviceAgent = navigator.userAgent;
	if (deviceAgent.match(/Mac/) && deviceAgent.match(/Mobile/)) { var iOS = true; }
	if (iOS) {
	    $('body').removeClass('hashover');
	} else {
	    $('body').addClass('hashover');
	}
});

