Работаем: Пн–Пт с 9:00 до 18:00
FIAT
Выберите подкатегорию
-
126
-
128
-
500
-
500C
-
ALBEA
-
BRAVA
-
BRAVA/BRAVO
-
BRAVO II
-
CINQUECENTO
-
CROMA
-
DOBLO
-
DUCATO
-
DUCATO II
-
DUCATO III
-
DUCATO IV
-
GRANDE PUNTO
-
IDEA
-
MAREA
-
MULTIPLA
-
MULTIPLA 100
-
PALIO
-
PANDA
-
PANDA II
-
PUNTO
-
PUNTO II
-
SCUDO
-
SCUDO II
-
SEDICI
-
SEICENTO
-
SIENA
-
STILO
-
TALENTO
-
TEMPRA
-
TIPO
-
ULYSSE
-
ULYSSE II
-
UNO
';
html += ' ' + $(element).find('.wishlist').html() + '
';
html += ' ' + $(element).find('.compare').html() + '
';
html += '';
html += '';
var image = $(element).find('.image').html();
if (image != null) {
html += '
' + image + '
';
}
var price = $(element).find('.price').html();
if (price != null) {
html += '
' + price + '
';
}
html += '
' + $(element).find('.name').html() + '
';
html += '
' + $(element).find('.description').html() + '
';
var rating = $(element).find('.rating').html();
if (rating != null) {
html += '
' + rating + '
';
}
html += '
';
$(element).html(html);
$(document).ready(function() {
// Tooltip only Text
$('.masterTooltip').hover(function(){
// Hover over code
var title = $(this).attr('title');
$(this).data('tipText', title).removeAttr('title');
$('')
.text(title)
.appendTo('body')
.fadeIn('slow');
}, function() {
// Hover out code
$(this).attr('title', $(this).data('tipText'));
$('.tooltip').remove();
}).mousemove(function(e) {
var mousex = e.pageX + 5; //Get X coordinates
var mousey = e.pageY + 5; //Get Y coordinates
$('.tooltip')
.css({ top: mousey, left: mousex })
});
});
$(function(){
$('.cart input.button')
.css( {backgroundPosition: "0px 0px"} )
.mouseover(function(){
$(this).stop().animate({backgroundPosition:"(0px -20px)"}, {duration:500})
})
.mouseout(function(){
$(this).stop().animate({backgroundPosition:"(0px -20px)"}, {duration:200, complete:function(){
$(this).css({backgroundPosition: "0px 0px"})
}})
})
});
});
$('.display').html('Вид: Список / Сетка');
$.totalStorage('display', 'list');
} else {
$('.product-list').attr('class', 'product-grid');
$('.product-grid > div').each(function(index, element) {
html = '';
var image = $(element).find('.image').html();
if (image != null) {
html += '' + image + '
';
}
html += '' + $(element).find('.name').html() + '
';
html += '' + $(element).find('.description').html() + '
';
var price = $(element).find('.price').html();
if (price != null) {
html += '' + price + '
';
}
var rating = $(element).find('.rating').html();
if (rating != null) {
html += '' + rating + '
';
}
html += '' + $(element).find('.cart').html() + '
';
html += '' + $(element).find('.wishlist').html() + '
';
html += '' + $(element).find('.compare').html() + '
';
$(element).html(html);
$(document).ready(function() {
// Tooltip only Text
$('.masterTooltip').hover(function(){
// Hover over code
var title = $(this).attr('title');
$(this).data('tipText', title).removeAttr('title');
$('')
.text(title)
.appendTo('body')
.fadeIn('slow');
}, function() {
// Hover out code
$(this).attr('title', $(this).data('tipText'));
$('.tooltip').remove();
}).mousemove(function(e) {
var mousex = e.pageX + 5; //Get X coordinates
var mousey = e.pageY + 5; //Get Y coordinates
$('.tooltip')
.css({ top: mousey, left: mousex })
});
});
$(function(){
$('.cart input.button')
.css( {backgroundPosition: "0px 0px"} )
.mouseover(function(){
$(this).stop().animate({backgroundPosition:"(0px -20px)"}, {duration:500})
})
.mouseout(function(){
$(this).stop().animate({backgroundPosition:"(0px -20px)"}, {duration:200, complete:function(){
$(this).css({backgroundPosition: "0px 0px"})
}})
})
});
});
$('.display').html('Вид: Список / Сетка');
$.totalStorage('display', 'grid');
}
}
view = $.totalStorage('display');
if (view) {
display(view);
} else {
display('[b] grid [/b]');
}
//-->