(function($){

    $(function(){
        $('.menu a').each(function(i){
            if ($(this).attr('href') == location.pathname)
                $(this).parent().addClass('active');
        });
		
		$('.menu .active').parents('ul').css({display: 'block'});
		
		
		$('.lightbox a').addClass('pirobox');

		$().piroBox({
			my_speed: 600,
			bg_alpha: 0.8,
			radius: 4,
			scrollImage : false,
			pirobox_next : 'piro_next',
			pirobox_prev : 'piro_prev',
			close_all : '.piro_close',
			slideShow : 'slideshow',
			slideSpeed : 6
		});

		$('.stock-gallery-images input').change(function(){
			$.post('/ministock/index/ajax-stock-cart', { image: $(this).attr('name'), checked: $(this).attr('checked') }, function(response){
				alert(response);
			});
		});
		
    });

})(jQuery);
