var cookies = false;

$(document).ready(function(){

	/* title */
	$('.toggle-panel').click( function() {
	
		//var img = $(this).children('img');
		var id = $(this).attr('id');
		
		$("#wine" + id).slideToggle("slow");
		
		var btn = $( '#' + id.replace("list_","btn_") );
		
		/* change text of button */
	    if( btn.attr('innerHTML').indexOf('sluiten') > -1 )
	    {
	        btn.attr('innerHTML','Bekijk de fiches');
	        btn.attr('title','Bekijk de fiches');
	    }
	    else if( btn.attr('innerHTML').indexOf('Bekijk') > -1 )
	    {
	        btn.attr('innerHTML','Fiches sluiten');
	        btn.attr('title','Fiches sluiten');
	    }
	    else if( btn.attr('innerHTML').indexOf('Voir') > -1 )
	    {
	        btn.attr('innerHTML','Fermer les fiches');
	        btn.attr('title','Fermer les fiches');
	    }
	    else if( btn.attr('innerHTML').indexOf('Fermer') > -1 )
	    {
	        btn.attr('innerHTML','Voir les fiches');
	        btn.attr('title','Voir les fiches');
	    }
		
		
		/*
        if( img.attr('src').indexOf('download_closed') > -1 )
        {
            img.attr('src', '/site_images/blogwine/download_open.gif');
        }
        else 
	    {
            img.attr('src', '/site_images/blogwine/download_closed.gif.gif');
        }*/
        
        //window.location.hash = "winefamily" + id;	

		return false;
		
	});	

	/* button */
	$('.toggle-btn').click( function() {
	
		var id = $(this).attr('id');
	    
	    /* change text of button */
	    if( $(this).attr('innerHTML').indexOf('sluiten') > -1 )
	    {
	        $(this).attr('innerHTML','Bekijk de fiches');
	        $(this).attr('title','Bekijk de fiches');
	    }
	    else if( $(this).attr('innerHTML').indexOf('Bekijk') > -1 )
	    {
	        $(this).attr('innerHTML','Fiches sluiten');
	        $(this).attr('title','Fiches sluiten');
	    }
	    else if( $(this).attr('innerHTML').indexOf('Voir') > -1 )
	    {
	        $(this).attr('innerHTML','Fermer les fiches');
	        $(this).attr('title','Fermer les fiches');
	    }
	    else if( $(this).attr('innerHTML').indexOf('Fermer') > -1 )
	    {
	        $(this).attr('innerHTML','Voir les fiches');
	        $(this).attr('title','Voir les fiches');
	    }
		
		$("#wine" + id.replace("btn_","list_")).slideToggle("slow");		
        
        return false;
		
	});	
	
});



