$('#nav a').corner("top cc:#D5D5E0 5px");
$('#main').corner("top sc:#4F6950 cc:#D5D5E0");
$('.rPanel, .quarterPanel .inner').corner("cc:#ffffff 5px");
$('#search, .quarterPanel .top').corner("top 5px");

$(function(){

	// Loop over each snippet, adding a click event that redirects to the first link inside it
	$( "div.quarterPanel" ).each(function( intIndex ){
		var link = $(this).contents().find("a").attr("href");
		$( this ).bind ("click", function(){
				window.location = link;
		});
		$(this).css('cursor','pointer');
	});
	
	// pagination
	//$("#listinglist").pagination(); 
	
	// setup colorbox
	$("a[rel='lightbox']").colorbox({photo:true, opacity:0});
	
	// clear any default values when clicked				 
	if ($('.default-value').length != 0) {
		$('.default-value').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;
			});
			
		});	
	}

});
		
