/* 
 * To change this template, choose Tools | Templates
 * and open the template in the editor.
 */

$(function() {
     $('div.left-content').each(function() {
        $(this).find('h2').addClass('customfont-book');
        
    });
    $('ul').each(function() {
        $(this).find('li:first').addClass('first');
        $(this).find('li:last').addClass('last');
    });
    $("select").each(function() {
        $(this).find('option:first').addClass('first');
        $(this).find('option:last').addClass('last');
    });
   
})
