// remap jQuery to $
(function($){})(window.jQuery);


/* trigger when page is ready */
$(document).ready(function (){

$("* > :nth-child(2n+2)").css("margin-right", 0);

});


/* optional triggers

$(window).load(function() {
	
});

$(window).resize(function() {
	
});

*/
