jQuery.noConflict();
jQuery(document).ready(function($){
	$('ul.sf-menu').superfish();
	
	$("#newsletter_frm input[type=text]").focus(function() {
		if($(this).val() == $(this).attr('title')) {
			$(this).val('');
		}
	});
	
	$("#newsletter_frm input[type=text]").blur(function() {
		if($(this).val() == '') {
			$(this).val($(this).attr('title'));
		}
	});
});


