 $(function() {
$(".image").mouseover(function() {
var image = $(this).attr("rel");
$('#image').fadeIn('slow');
$('#image').html('<img src="' + image + '"  height="315" width="400"/>');
return false;
});

$(".itemname").mouseover(function() {
var itemname = $(this).attr("itemname");
$('#itemname').fadeIn('slow');
$('#itemname').html('<span>' + itemname +'</span>');
return false;
});

$(".desc").mouseover(function() {
var desc = $(this).attr("show");
$('#desc').fadeIn('slow');
$('#desc').html('<span>' + desc +'</span>');
return false;
});

$(".con").mouseover(function() {
var con = $(this).attr("name");
$('#con').fadeIn('slow');
$('#con').html('<span>' + con +'</span>');
return false;
});

$(".cur").mouseover(function() {
var cur = $(this).attr("cur");
$('#cur').fadeIn('slow');
$('#cur').html('<span>' + cur +'</span>');
return false;
});

$(".price").mouseover(function() {
var price = $(this).attr("price");
$('#price').fadeIn('slow');
$('#price').html('<span>' + price +'</span>');
return false;
});

$(".pricestatus").mouseover(function() {
var pricestatus = $(this).attr("pricestatus");
$('#pricestatus').fadeIn('slow');
$('#pricestatus').html('<span>' + pricestatus +'</span>');
return false;
});

$(".item").mouseover(function() {
var item = $(this).attr("item");
$('#item').fadeIn('slow');
$('#item').html('<span>' + item +'</span>');
return false;
});
});
