 $(document).ready(function(){
				
		// Form Input
		 $('.change').focus(function() {
		 	if (this.value == this.defaultValue) {
		 this.value = ''; }});
		 
		 $('.change').blur(function() {
		 	if (this.value == '') {
		 this.value = this.defaultValue; }});
		 
		
		// Fancybox za 'send link'
		$("a.slink").fancybox({
			'titleShow': false
		});

 });
