$(document).ready(function() {

  //$("#productline li:odd").addClass("odd");
  $("#productline li:nth-child(3n+1)").addClass("nooffset");
  $("#productline-two li:nth-child(4n+1)").addClass("offset");

	// funkcia pre vysunutie info o obrazku
	jQuery.fn.masque = function(classe) {
    $(this).append("<img src='img/detail.png' alt='detail' class='detail' />");	
		$(this).hover(function(){
		$(this).find(classe).stop().animate({height:"20px",opacity: "0.8"},400);
	},function () { 
		$(this).find(classe).stop().animate({height:"20px",opacity: "0"}, 400);
	});
	}
	// aplikacia funkcie
	$("#productline li a.linkdetail").masque("img.detail");
	
    
    // Accordion
    $("#accordion").accordion({
    header: "h5",
    autoHeight: false
    });
	
  // scrollTop
  $('#scrollTop').click(function() {
    $('html, body').animate({scrollTop: '0px'}, 1000,'easeOutQuart');
    return false;
  });

});

