$(function () {
        
		$("#tavaszcsomag").show();
		$("#nyarcsomag").hide();
		
		$("#nyarc").click(function () {
        var $this = $(this);		
		$("#nyarcsomag").show();
        $("#tavaszcsomag").hide();
        });
		
		$("#tavaszc").click(function () {
        var $this = $(this);		
		$("#nyarcsomag").hide();
        $("#tavaszcsomag").show();
        });
    });
