jQuery().ready(function(){

	//Panes
	if($('div#tweets')) {
		$('div#tweets').jScrollPane({
			scrollbarWidth : 17,
			scrollbarMargin : 10
		});
	}
	
	//Products page
	$('div#products div.product div.product-deets').hide();

	$('div#products div.product').hover(function() {
		$(this).children('div.product-intro').hide();
        $(this).children('div.product-deets').show();
    }, function() {
		$(this).children('div.product-intro').show();
        $(this).children('div.product-deets').hide();
    });

});

function clearText(field){
    if (field.defaultValue == field.value) field.value = '';
    else if (field.value == '') field.value = field.defaultValue;
}
