//for light box
$(function() {
        $('.image-box a').lightBox();
});

//for newsletter
$(function() {
	$('#news_subscribe').click(function(){
		$.ajax({
		   type: "POST",
		   url: "./news_js.php",
		   data: $('#subscribeform').serialize(),
		   success: function(msg){
				$('#newsl_message').html(msg);
		   }
		});										
	});
});

//for product list right line

$(function(){
	$(".products-list li").each(function(i){
		if((i+1)%3==0){
			$(this).css({"border-right":"0"});		
		}							 
	});
		   
})