// JavaScript Document

	 $(document).ready(function(){
	 $('a[href$=".pdf"]').
  css({
   // use paddingLeft instead of padding-left;
   // jQuery (and Javascript) use camelCase
   // for CSS attributes instead of hyphenation
  .application-pdf
});
 $('a[href$=".doc"]').
  css({
   // use paddingLeft instead of padding-left;
   // jQuery (and Javascript) use camelCase
   // for CSS attributes instead of hyphenation
   //paddingRight: '18px',
  // background: 'transparent url("icon_doc.gif") no-repeat center right'
  .application-doc
});
$('a[href$=".xls"]').
  css({
   // use paddingLeft instead of padding-left;
   // jQuery (and Javascript) use camelCase
   // for CSS attributes instead of hyphenation
   //paddingRight: '18px',
  // background: 'transparent url("icon_xls.gif") no-repeat center right'
  .application-xls
});
  $('a[href$=".txt"]').
  css({
   // use paddingLeft instead of padding-left;
   // jQuery (and Javascript) use camelCase
   // for CSS attributes instead of hyphenation
   .application-txt
})
  $('a[href$=".ppt"]').
  css({
   // use paddingLeft instead of padding-left;
   // jQuery (and Javascript) use camelCase
   // for CSS attributes instead of hyphenation
   .application-ppt
});
  $('a[href$=".zip"]').
  css({
   // use paddingLeft instead of padding-left;
   // jQuery (and Javascript) use camelCase
   // for CSS attributes instead of hyphenation
   .application-zip
});
  $('a[href$=".swf"]').
  css({
   // use paddingLeft instead of padding-left;
   // jQuery (and Javascript) use camelCase
   // for CSS attributes instead of hyphenation
   .application-swf
});
  $('a[href$=".mp3"]').
  css({
   // use paddingLeft instead of padding-left;
   // jQuery (and Javascript) use camelCase
   // for CSS attributes instead of hyphenation
   .application-mp3
});
  $('a[href$=".wmv"]').
  css({
   // use paddingLeft instead of padding-left;
   // jQuery (and Javascript) use camelCase
   // for CSS attributes instead of hyphenation
   .application-wmv
});
  $('a[href$=".wma"]').
  css({
   // use paddingLeft instead of padding-left;
   // jQuery (and Javascript) use camelCase
   // for CSS attributes instead of hyphenation
   .application-wma
});
  $('a[href$=".asx"]').
  css({
   // use paddingLeft instead of padding-left;
   // jQuery (and Javascript) use camelCase
   // for CSS attributes instead of hyphenation
   .application-asx
});
  $('a[href$=".asf"]').
  css({
   // use paddingLeft instead of padding-left;
   // jQuery (and Javascript) use camelCase
   // for CSS attributes instead of hyphenation
   .application-asf
});
});
