function setText(txt) {
	if(txt==undefined) { txt = 'Browse our applications at the left.'; }
	$("#status").html(txt);
}

$(document).ready(function() {
	$(".product").hover(function() {
		setText($(this).attr("data-name")+" for Android");
	},function() {
		setText();
	});
});