$(function(){

	$('a.lightbox').lightBox();
	
	$('.pngFix').pngfix();
	
    $("a.addShip").click(function(){
        $("#schepen").append("<input type='text' name='schip[]' />");
    });
    
    $("a.addEmail").click(function(){
        if($("#emails").children().length < 2){
            $("#emails").append("<input type='text' name='email[]' />");
        }
    });
    
    $('#country').change(function() {
        if(this.value == 'Other'){
            $('#othercountry').show();
        }else{
            $('#othercountry').hide();
        }
    });
});

function SetMenu(){	
	if ($('.content_main').height() + 14 > $('.content_left').height()) {
		$('.content_left').height($('.content_main').height() + 14);
	}
}
