//function lookup(inputString) {
//	if(inputString.length == 0) {
//		jQuery('#search_suggestions').fadeOut('fast'); // Hide the suggestions box
//	} else {
//		//jQuery.post("rpc.php", {queryString: ""+inputString+""}, function(data) { // Do an AJAX call
//			jQuery('#search_suggestions').fadeIn('fast'); // Show the suggestions box
//			//jQuery('#search_suggestions').html(data); // Fill the suggestions box
//		//});
//	}
//}


jQuery(document).ready(function(){
	jQuery(document.body).formHints();
	jQuery("a[rel*='newsletter'],a[rel*='newsletter2'],a[rel*='find_model'],a[rel*='share'],a[rel*='select-region']").colorbox({ width: "800px", height: "625px", iframe: true });
	jQuery("a[rel*='help'],a[rel*='searchtips']").colorbox({ width: "800px", height: "625px", iframe: false });
	
	jQuery("a[rel*='rss'],a[rel*='rss nofollow']").colorbox({ width: "540px", height: "500px", iframe: false });
	jQuery("a[rel*='external']").attr("target","_blank");
	jQuery("#search_input input").blur(function() {
	    jQuery('#search_suggestions').fadeOut('fast');
	});
});

