$(document).ready(function(){
						   
	$("#imgRTS").mouseover(function() {
		$("#divFrontReplace").fadeOut("fast", function(){
			$("#divFrontReplace").html("<div class='qtip'>" + $('#divInfoRTS').html() + "</div>");
			$("#divFrontReplace").show();
		});
	});

	$("#imgKyrocera").mouseover(function() {
		$("#divFrontReplace").fadeOut("fast", function(){
			$("#divFrontReplace").html("<div class='qtip'>" + $('#divInfoKyrocera').html() + "</div>");
			$("#divFrontReplace").show();
		});
	});

	$("#imgMidAmericaWeb").mouseover(function() {
		$("#divFrontReplace").fadeOut("fast", function(){
			$("#divFrontReplace").html("<div class='qtip'>" + $('#divMidAmericaWeb').html() + "</div>");
			$("#divFrontReplace").show();
		});
	});

	$("#imgDesignYourPC").mouseover(function() {
		$("#divFrontReplace").fadeOut("fast", function(){
			$("#divFrontReplace").html("<div class='qtip'>" + $('#divDesignYourPC').html() + "</div>");
			$("#divFrontReplace").show();
		});
	});

	$("#imgDell").mouseover(function() {
		$("#divFrontReplace").fadeOut("fast", function(){
			$("#divFrontReplace").html("<div class='qtip'>" + $('#divInfoDell').html() + "</div>");
			$("#divFrontReplace").show();
		});
	});
});