// BUILT ON TOP OF JQUERY /////////////////////////////////////////////////////////////////////////
///////////////////////////////////////////////////////////////////////////////////////////////////
/*************************************************************************************************/

$(document).ready(function() {
						   
	$("ul li:first-child").addClass("first-child");
	$(".all-news .post:first-child").addClass("first-child");
	
	
	///////////////////////////////////////////////////////////////////////////////////////////////

	
	// init fancybox, see for more http://fancybox.net/api
	/*$(".procedure-detail .thumbnails a").fancybox({
			'titlePosition' : 'inside'
		});*/
	
	/*$(".exampleEditDate").fancybox({
		'width'				: 660,
		'height'			: '95%',
        'autoScale'     	: false,
		'type'				: 'iframe'
	});*/

});

/// ADDITIONAL FUNCTIONS ///

function limitText(field, limit) {
    if (field.value.length > limit) {
        field.value = field.value.substring(0, limit);
    }
}

function clearDefault(element, text) {
    if (element.value == text)
        element.value = '';
}

function setDefault(element, text) {
    if (element.value == '')
        element.value = text;
}
