$(document).ready(function() {
  $('#article-content div.inside-form table tbody tr td:odd').addClass('wynik')
  



  $("#product-list li").live("click", function (ev) {
	ev.preventDefault();
	var adres = $('.more p a', this).attr('href');
    location.href=adres
  });
  
    $("#polecane-produkty li").live("click", function (ev) {
	ev.preventDefault();
	var adres = $('a', this).attr('href');
    location.href=adres
  });
  
  $("#mp-list li ul li p").live("click", function (ev) {
	ev.preventDefault();
	var adres = $(this).parent().find('h3 a').attr('href');
    location.href=adres
  });

$('.params tbody tr:odd').addClass('params-odd') 
});


$('#v1').click(function ()
{
  $('#product-list').removeClass().addClass('view-3');
})
$('#v2').click(function ()
{
  $('#product-list').removeClass().addClass('view-1');
})
$('#v3').click(function ()
{
  $('#product-list').removeClass().addClass('view-2');
})






