$(function () {
	var tabContainers1 = $('div.contenttext > div');
    $('a#IngredientLista').click(function () {
        tabContainers1.hide().filter(this.hash).show();
		return false;
    }).filter(':first').click();	
	
	
    var tabContainers = $('div.contenttext > div');
    
    $('div.contenttext ul.Menu a').click(function () {
        tabContainers.hide().filter(this.hash).show();
        
        $('div.contenttext ul.Menu a').removeClass('selected');
        $(this).addClass('selected');
        
        return false;
    }).filter(':first').click();
	
});