$(document).ready(function(){
	$('.csc-textpic-image').css('position', 'relative');
	
	list();
});
function list() {
	if($('#content div.csc-frame').length == 0) return;

	$('#content div.csc-frame').each( function(i) {
		if($(this).hasClass('csc-frame-frame1') || $(this).hasClass('csc-frame-frame2')) {
			var frame=$(this);
			var headings=$(this).children('div.csc-header').children('h3');
			if(headings) {
				var heading=headings[0];

				contents=$(this).children('div.csc-textpic-content');

				$(heading).
					mouseover(function() {
						$(this).addClass('hover');
					}).
					mouseout(function() {
						$(this).removeClass('hover');
					}).
					click(function(){
						var frame=$(this).parent().parent();
						$(frame).toggleClass('csc-frame-frame1');
						$(frame).toggleClass('csc-frame-frame2');
						$(frame).children('div.csc-textpic-content').slideToggle(180,'linear',function() {
							if($(this).parent().hasClass('csc-frame-frame2')) {
								elfoot=$(this).offset().top+$(this).height()+15;
								winfoot=$(window).height()+$(window).scrollTop();
								if(elfoot>winfoot) {
									window.scrollTo($(window).scrollLeft(),elfoot-$(window).height());
								}
							}
						});
					});

				if($(this).hasClass('csc-frame-frame1')) {
					$(contents).hide()
					.css('filter', '')
					.css('zoom', '1');
				}
			}
		}
	});
}

