function getProductos(categoria)
{
var $j = jQuery.noConflict();    
$j.get('http://winery.com.ar/wp-content/themes/supermassive/ajax.php', { op: "getProductos", categoria : categoria}, function(data) {
$j("#productos-seleccion").html(' ');
$j("#productos-seleccion").html(data);
});
}
function getSidebar()
{
var $j = jQuery.noConflict();    
$j.get('http://winery.com.ar/wp-content/themes/supermassive/ajax.php', { op: "getSidebar"}, function(data) {
$j("#sidebar").html(' ');
$j("#sidebar").html(data);
jQuery('#slides-promo').cycle({ 
fx:     'fade', 
speed:  'fast', 
next:   '#adelante-promo', 
prev:   '#atras-promo' 
});
});
}
function getSidebarHome()
{
var $j = jQuery.noConflict();    
$j.get('http://winery.com.ar/wp-content/themes/supermassive/ajax.php', { op: "getSidebarHome"}, function(data) {
$j("#winery-home-sidebar").html(' ');
$j("#winery-home-sidebar").html(data);

jQuery('#slides-sucursal').cycle({
fx: 'fade' 
});
jQuery('#slides-promo').cycle({ 
fx:     'fade', 
speed:  'fast', 
next:   '#adelante-promo', 
prev:   '#atras-promo' 
});
});

}
