jQuery(document).ready(function($) {




if($("#rss").length > 0) {
  $('#rss').rssfeed('http://newsroom.canelsondrilling.com/RSS-Feed?rss=a715af4b-7deb-404a-9a7b-19ddf0251b8a', {
    limit: 4
  });
}


if($("#employment").length > 0) {
  $("#employment").validate();
}

//Add date picker to form(s)
if($('form#employment').length) {
$('.date-pick').datePicker({clickInput:true,startDate:'01/01/1900'});
}

if($("#member-nav").length > 0) {
$("#member-nav a").each(function() {
			if(this.href == window.location || this.href == document.location.protocol + "//" + window.location.hostname + window.location.pathname)
			$(this).addClass("active");
		});
$("#member-nav ul ul a.active").parent("li").parent("ul").addClass('open');
$("a.active").parent("li").addClass('parent');
}


$("ul.sf-menu").supersubs({ 						
minWidth:		12,	// minimum width of sub-menus in em units 
maxWidth:		27,	// maximum width of sub-menus in em units 
extraWidth:	1	// extra width can ensure lines don't sometimes turn over  
}).superfish();	// call supersubs first, then superfish, so that subs are 
// not display:none when measuring. Call before initialising 
// containing tabs for same reason.



/* --------- Random image in sidebar ------*/

$(".rcontent").hide();
var randNum = (Math.floor(Math.random() * 7))+1;
$("#random"+randNum).show();


/* --------- Add value to form ------*/

$('.date-a').example('(m/d/y)');
$('.phone').example('(###) ### ####');
$('.exp').example('Expiry (m/d/y)');
$('.cert').example('Certification #');
$('.from').example('From (m/d/y)');
$('.to').example('To (m/d/y)')

/* --------- Employment form. Reveal more content ------*/ 

$('.more').hide();
$('a.show').click(function() {
$('.more').show('medium');
return false;




/* --------- Add "javascript-enabled" class to body ------*/ 
$("body").addClass
("javascript-enabled");



});

});

	

