$(document).ready(function() {
	$('.servicecolumn').mouseover(function() {		
		$(this).addClass("servicecolumnover");
	});  
	$('.servicecolumn').mouseout(function() {		
		$(this).removeClass("servicecolumnover");
	}); 	
	$(".frontservices_btn_show").mouseover(function () {
		$(this).addClass("btnover");
	});
	$(".frontservices_btn_show").mouseout(function () {
		$(this).removeClass("btnover");
	});	
	$(".frontcontact_btn_show").mouseover(function () {
		$(this).addClass("btnover");
	});
	$(".frontcontact_btn_show").mouseout(function () {
		$(this).removeClass("btnover");
	});
});

