/*******
 *@description: script for http://cuprum.name
 *******/

$(function () {
	var flogin_widget = $('.widget-content').children('.flogin');
/*	if (!$.browser.msie) {
		$('pre').each(function (i, e) {
			hljs.highlightBlock(e, '   ');
		});
	} else {
		$('pre').each(function (i, e) {
			hljs.highlightBlock(e, '   ', true);
		});
	}*/

	$('#in').toggle(function () {
		flogin_widget
		.animate({'marginTop': '0'}, 'fast', function () {
			$('#in')
			.css({
				'color': '#a9a9a9',
				'borderBottom': '1px dotted #a9a9a9'
			});
		});
	}, function () {
		flogin_widget
		.animate({'marginTop': '-27px'}, 'fast', function () {
			$('#in')
			.css({
				'color': '#4c4c4c',
				'borderBottom': '1px dotted #4c4c4c'
			});
		});
	});
});





