

$(document).ready(function () {

	// initialize scrollable together with the autoscroll plugin
	$("div.scrollable").scrollable({size:1,speed:2000}).circular().autoscroll({autoplay: true,	interval:10000, api: true});
	$("div.scrollable_peq").scrollable({size:1,speed:2000}).circular().autoscroll({autoplay: true,	interval:10000, api: true});
	//$("div.paraslide_tabs").tabs().play();
	

	/* Añadir eventos en la lista de artículos para internet explorer */
	jQuery.each(jQuery.browser, function(i) {
		if($.browser.msie){
			var versionParts = jQuery.browser.version.split('.');
			if( parseInt(versionParts[0])>=6 ) shopEvents();
		}
	});




});


//	prototipo htmlentity en javascript
String.prototype.htmlEntities = function (){
	return this.replace(/&/g,'_AMP_').replace('>','_GRAN_').replace('<','_PETIT_').replace(/[+]/g,'_PLUS_').replace(/#/g,'_ALMO_');
};


