/* Copyright: ----------------------------------------------------------------------------------------------------------------------------------------
PrimoThemes.com, WebSharks Inc. ( http://www.primothemes.com/ )
-- Modifications: ------------------------------------------------------------------------------------------------------------------------------------
You are authorized to make any necessary modification(s) to our products to fit your purposes.
However, you may NOT re-distribute or release any modifications as GPL or otherwise.
You are also NOT allowed to delete our credit text from the top of this file.
-- Unauthorized Use: ---------------------------------------------------------------------------------------------------------------------------------
You may not place any of our products, modified or unmodified, on a diskette, CD, website or any other
medium and offer them for re-distribution or re-sale of any kind without prior written consent.
--------------------------------------------------------------------------------------------------------------------------------------------------- */
/*
Get the previous sibling.
*/
(function(jQuery)
 {
  jQuery.fn.prevSibling = function ()
   {
    var s = this[0].previousSibling;
    while (s.nodeType !== 1)
     s = s.previousSibling;
    return jQuery(s);
   };
 })(jQuery);