$(function() {

/*Swap Images on Front Page*/
	$(".img1").hover(
		function () {
			$(this).attr("src", $(this).attr("src").replace(/.png/, "hover.png"));
		},
		function () {
			$(this).attr("src", $(this).attr("src").replace(/hover.png/, ".png"));
		}
	);
	
/*Add Link To Full Article*/
	$(".img1").click(
		function () {
			document.location.href = '/services/websites/mobile';
		}
	);
	
	
});


