/**
 * @author meirionw
 */
$(document).ready(function(){
	$('#applicationstable li a.button').mouseover(
		function(){
//			console.debug('test' + $(this).attr('catname'));
			var theId = $(this).attr("id");
			$('a#first').css("backgroundImage","url(/images/uploads/product_categories/homepage_menu/" + $(this).attr("id") + ".jpg)");
			$('span#catText > p').html($(this).attr("catname"));
		},
		function(){
			return false;
		}
	)

});
