// console.log('global.js loaded');

$(document).ready(function() {
	/*hover for ie */
	$('input.submit').hover( function(){
		$(this).addClass('over');
	},
	function(){
		$(this).removeClass('over');
	});

});