(function($){$(document).ready(function(){
	$('.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
	});
	
	$('#wiki_entries a.wiki-item').click(function(){
		
		if ($(this).next().css('display') == 'none')
			$(this).next().slideDown('fast');
		else
			$(this).next().slideUp('fast');
		return false;
	});

	$('#btnSendToMore').click(function(){
		var email = $('#sendto').val();
		$('#sendto').after('<textarea name="sendto" id="sendto_more" rows="4" cols="49"></textarea>');
		$('#sendto').remove();
		$('#sendto_more').val(email);
		$(this).remove();
		return false;
	});
	
	$('.noClick').click(function(){
		return false;
	});
	
	$('.moreFile').click(function(){
		var nextItem = '<tr>' + $('#file_template').html() + '</tr>';
		$(this).parents('table').append(nextItem);
		return false;
	});
	
	
	$('.stock-gallery-images input').change(function(){
		$.post('/index.php5/ideafontana/ajax-stock-cart', { image: $(this).attr('name'), checked: $(this).attr('checked') }, function(response){
			alert(response);
		});
	});
	
})})(jQuery);

