﻿(function($) {
	$(document).ready(function(){

		if ($('.mouseoverFirst').length){
				
			$('.mouseoverFirst').mouseenter(function(){
				
				$(this).addClass('mouseOver');
					
			});
			
			$('.mouseoverFirst').mouseout(function(){
				
				$(this).removeClass('mouseOver');
					
			})
				
		}

	});
})(jQuery);

