$(document).ready(function(){

// --------------------------------------- //
// Shadowbox
// --------------------------------------- //
 Shadowbox.init({});

// --------------------------------------- //
// Navigation
// --------------------------------------- //

 //$('#nav li a:first').css('display','none');

 var bver = $.browser.version;
 var bname = $.browser.mozilla;

 if(bname == true) {
  $('#nav li a').css({
   'padding-left':'17px',
   'padding-right':'17px'
  });
  $('#nav li a:last').css('padding-right','18px');
 } else {
 $('#nav li a:last').css({
  'padding-left':'10px',
  'padding-right':'11px'
 });
}
 
// --------------------------------------- //
// No Page Image
// --------------------------------------- //
 var checkpageImage = $('#content').find('#pageImage');
 if(checkpageImage.size() == 0){
 $('#content h1:first').css('margin','0px 0px 20px 0px');
 }
 
// --------------------------------------- //
// Featureboxes
// --------------------------------------- // 
 $('#fbox2 h2').html('<img src="images/design/ashairIcon.jpg" style="float:right;" /><br /><br />Employment Opportunities');
 $('#fbox3 h2').html('<img src="images/design/question.png" style="float:left;" /><br /> &nbsp; Ask an expert');

// --------------------------------------- //
// Spacing
// --------------------------------------- // 
$('.categorybox').filter(function(index) {
  return index % 3 == 1;
}).css('margin', '0 20px 20px 20px');

// --------------------------------------- //
// Dropdown
// --------------------------------------- // 

$('#type, #industry, #brand').customStyle();


});
