$(document).ready(function(){
	$('div#product_list ul li').hover(
		function(){
			$(this).children('a.text_link').css({
				'background-color': '#7d0d12',
				'color': '#ffffe7'
			});
		},
		
		function(){
			$(this).children('a.text_link').css({
				'background-color': '#ffffe7',
				'color': '#060606'
			});
		}
	);
});

function getProducts(iIdArtist, iIdPage){
	$.ajax({
	  url: base_url_index+"/ajax/artist_pagination/"+iIdArtist+"/"+iIdPage,
	   method: 'post',
	  success: function(html){
		$("#product_list").html(html);
	  }
	});
}
