/*	JS Document 
 *	Author: Tashreek Jackson
 *	Overview: jQuery Functions.	
*/

$(document).ready(function() {
	$('.text-box').each(function() {
 		var default_value = this.value;
		$(this).focus(function(){
			if(this.value == default_value) {
				this.value = '';
			}
		});
		$(this).blur(function(){
			if(this.value == '') {
				this.value = default_value;
			}
		});
	});
	
	$("ul#ticker").liScroll();

});

$(window).load(function() {
	$('#slides').cycle({ 
		fx:    'fade', 
		speed:  2500 
	});
	
	//var contentHeight =	$("#content").height() - 40;
	//$("#sidebar").css("height",contentHeight);

});

