/* Author: 
	Marco Lisci - BadShark Communications
*/

$(document).ready(function(){
	
	$(".gallery a").colorbox();
	
	$('.products li:nth-child(3n)').addClass('last');
	$('.content .post:nth-child(2n)').addClass('last');
	$('.pagination a').addClass('button prev');
	
	$("a.button").hover(
	  function () {
	    $(this).fadeTo('fast', 0.7);
	  }, 
	  function () {
	    $(this).fadeTo('fast', 1);
	  }
	);
	
	$("ul.products a").hover(
	  function () {
	    $(this).fadeTo('fast', 0.7);
	  }, 
	  function () {
	    $(this).fadeTo('fast', 1);
	  }
	);
	
});

