I am searching for a way how I could select a div element which is not the direct next one to the one which is \"selected\" by a click function.
It seems that $(this).parent().find('div').eq(2).attr('id') should work.
$(this).parent().find('div').eq(2).attr('id')
UPDATE( Added find('div') )