$('#slider').anythingSlider({
	buildNavigation : false,
	delay           : 3500,
	animationTime   : 1200
});


/*
if (Modernizr.borderradius) {

	$('.service-item img').each(function(i) {
		$(this).wrap('<span class="' + $(this).attr('class') + '" style="background:url(http://placehold.it/320x140/789/abc&text=Service&nbsp;' + i +') no-repeat center center; width: ' + $(this).width() + 'px; height: ' + $(this).height() + 'px;" />').css("opacity","0");
	});
}
*/

$('form').delegate('input', 'focus blur', function(event) {
	var $this  = $(this);
	    id     = this.id;
	    $label = $this.siblings('label[for=' + id + ']');
	    
	if ( event.type === 'focusin' ) {
	   $label.fadeTo('fast', 0.4);
	} else {
		$label.fadeTo('fast', 1);
	}
});

