$(document).ready(function () {
	// Form inputs text placeholder from label
	$('label.hidden').each(function() {
		$(this).css('display', 'none');

		id = $(this).attr('for');
		filler = $(this).text();

		$('#' + id).attr({
			value: filler,
			placeholder: filler
		})
	.focus(function() {
		if ( $(this).attr('value') == $(this).attr('placeholder') )
			$(this).attr('value', '');
		})
	.blur(function() {
		if ( $(this).attr('value') == '' )
			$(this).attr( 'value', $(this).attr('placeholder') );
		});
	});
	// Banner Slideshows
	var slideShow = new Array('#left-sidebar .commercial', '#content .top-commercial','#footer .bottom-commercial', '#right-sidebar .commercial');

	for (i=0; i < slideShow.length; i++) {
		var obj = $(slideShow[i]);
		if ( obj.children().length > 1 ) {
			obj.jshowoff({
				controls: false,
				links: false,
				speed: 4000
			});
		}
	}
});

