var Images = new Array();
Images[0] = new Image();
Images[0].src = "/public/images/secBox/tFrameClosed.jpg";

var clear_translator1 = 1;

function hideSecBoxBind(that) {
	$(that).find('.secClose').click(function(){
		$(this).css('display', 'none');
		$(that).find('.tFrame').css(
				{'background' : 'transparent url(/public/images/secBox/tFrameClosed.jpg) no-repeat scroll 187px top', 
				 'height' : '29px'});
		$(that).find('.horizContMask').css(
				{'background' : 'transparent',
				 'height' : '9px'});
		$(that).find('.titleShadow').css('top', '0');
		$(that).find('.previewCont').css('display', 'none');
		$(that).find('.secSpecialBox').css('display', 'none');
		$(that).find('.rFrame').css('display', 'none');
		$(that).find('.bFrame').css('display', 'none');
		$(that).find('.secOpen').css('display', 'block');
	});
};

function showSecBoxBind(that) {
	$(that).find('.secOpen').click(function(){
		$(this).css('display', 'none');
		$(that).find('.tFrame').css(
				{'background' : 'transparent url(/public/images/secBox/tFrame.jpg) no-repeat scroll 187px top', 
				 'height' : '13px'});
		$(that).find('.horizContMask').css(
				{'background' : 'transparent url(/public/images/secBox/contBg.jpg) repeat-y scroll left top',
				 'height' : ''});
		$(that).find('.titleShadow').css('top', '16px');
		$(that).find('.previewCont').css('display', 'block');
		$(that).find('.secSpecialBox').css('display', 'block');
		$(that).find('.rFrame').css('display', 'block');
		$(that).find('.bFrame').css('display', 'block');
		$(that).find('.secClose').css('display', 'block');
	});
};
