// ON DOCUMENT LOAD
$(document).ready(function(){
	 if($.browser.version.substring(0,1) !== '6')  {
        $('#lang_select_dropdown').sSelect()
    }
    
    if($.browser.version.substring(0,1) !== '6' && $('#centre_select_dropdown').length > 0)  {
        $('#centre_select_dropdown').sSelect()
    }    
    
    // CHECK FOR SUBMIT WELTAND FORM
    if($('#submit_wetland_form').length > 0){
    	//FILESTYLE INPPUTS
        $("#id_image").filestyle({ 
            image: MEDIA_URL+"images/wli_browse_button.gif",
            imageheight : 26,
            imagewidth : 58,
            width : 218
        });
        $("#id_pdf_map").filestyle({ 
            image: MEDIA_URL+"images/wli_browse_button.gif",
            imageheight : 26,
            imagewidth : 58,
            width : 218
        });
    }
    
    if($("#lang_select_dropdown").length){ //if we've got a 'select wetland' dropdown
    	$("#lang_select_dropdown").change(
    		function(){
    			id = $(this).val();
				document.location = id;
    		}
		);
    }
    
    //SET ALL FANCYBOX LINKS
    fancybox_links = $("a.fancybox");
    if(fancybox_links.length){
    	fancybox_links.fancybox();
    }
    
});
