(function($){ 
})(jQuery); 


Shadowbox.init({
    players:    ["img", "flv", "iframe"]
});

$(document).ready(function() {
	$('input[type="text"]').each(function() {
			$(this).attr('title', $(this).attr('value'));
			$(this).focus(function() {
					if($(this).attr('value') == $(this).attr('title')) {
						$(this).attr('value', '');
					}
				}).blur(function() {
					if($(this).attr('value') == "") {
						$(this).attr('value', $(this).attr('title'));
					}
				});
			$('textarea', this).focus(function() {
					if($(this).html() == $(this).attr('title')) {
						$(this).html('');
					}
				}).blur(function() {
					if($(this).html() == "") {
						$(this).html($(this).attr('title'));
					}
				});
		});
});