// JavaScript Document


$(function() {
    $('a.email').each(function(i) {
		var text = $(this).text();
		var address = text.replace(" at ", "@");
		var subject = '';
		if ($(this).attr('subject')) {
			subject = "?subject=" + $(this).attr('subject');
		}
		$(this).attr('href', 'mailto:' + address + subject);
		$(this).text(address);
	});
	
	$('#commandite_col').cycle({ 
		fx:     'blindX', 
		speed:   1000, 
		timeout: 6000,
		delay: -2000
	});
	
	$(".gallery a[rel^='prettyPhoto']").prettyPhoto({theme:'dark_rounded'});	
	
	$("#qty").change(function(){
		if ($(this).val()==11) {
			$("#discount").val(100);	
		}
		else {
			$("#discount").val(0);
		}
	});	
	
});

