function sub_handler(parent_id) {
//	var current_group_shown = $('#current_group_shown').val();
	$('#sub_container__'+current_group_shown).hide();
	$('#sub_container__'+parent_id).show();
	$('#param__parent_id').val(parent_id);
	$('#current_group_shown').val(parent_id);
	$('#search').attr('action',$('#search').attr('action')+parent_id);
}
//$(document).ready(function() {sub_handler(current_group_shown)});
function display_image(showcase_id) {
	$(showcase_id + ' .youtube').hide();
	$(showcase_id + ' .image').show();
}
function display_youtube(showcase_id,youtube_id) {
	$('#showcase_container__'+showcase_id + ' .image').hide();
	$('#showcase_container__'+showcase_id + ' .youtube').show();
	showcase('youtube_'+showcase_id , 'youtube',youtube_id,200,150,'','','0');
}