﻿/**
* ReadMore plugin
*
* By Joby Elliott for nmlottery.com
*/
(function ($) {
	//Attach this new method to jQuery
	$.fn.extend({
		//This is where you write your plugin's name
		ReadMore: function (options) {
			//Defaults
			var defaults = {
				expandText: '-- more --',
				collapseText: '-- less --'
			};
			var options = $.extend(defaults, options);
			//Iterate over the current set of matched elements
			return this.each(function () {
				//code goes here
				if ($(this).hasClass('readmore-activated')) {
					$(this).find('.readmore-expand a').html(options.expandText);
					$(this).find('.readmore-collapse a').html(options.collapseText);
				} else {
					$(this).wrapInner('<div class="readmore-content" />')
					.addClass('readmore-activated')
					.append('<div class="readmore-link readmore-expand"><a href="#">' + options.expandText + '</a></div>')
					.append('<div class="readmore-link readmore-collapse"><a href="#">' + options.collapseText + '</a></div>')
					.children('.readmore-content,.readmore-collapse').hide()
					$(this).find('.readmore-expand a').click(function (event) {
						//expand link event
						$(this).closest('.readmore-activated')
						.children('.readmore-content').show('blind');
						$(this).closest('.readmore-activated')
						.children('.readmore-expand').hide();
						$(this).closest('.readmore-activated')
						.children('.readmore-collapse').show();
						event.preventDefault();
					})
					$(this).find('.readmore-collapse a').click(function (event) {
						//collapse link event
						$(this).closest('.readmore-activated')
						.children('.readmore-content').hide('blind');
						$(this).closest('.readmore-activated')
						.children('.readmore-expand').show();
						$(this).closest('.readmore-activated')
						.children('.readmore-collapse').hide();
						event.preventDefault();
					});
				}
			});
		}
	});
})(jQuery);

/**
* Cookie plugin
*
* Copyright (c) 2006 Klaus Hartl (stilbuero.de)
* Dual licensed under the MIT and GPL licenses:
* http://www.opensource.org/licenses/mit-license.php
* http://www.gnu.org/licenses/gpl.html
*
*/
jQuery.cookie = function (name, value, options) {
    if (typeof value != 'undefined') { // name and value given, set cookie
        options = options || {};
        if (value === null) {
            value = '';
            options.expires = -1;
        }
        var expires = '';
        if (options.expires && (typeof options.expires == 'number' || options.expires.toUTCString)) {
            var date;
            if (typeof options.expires == 'number') {
                date = new Date();
                date.setTime(date.getTime() + (options.expires * 24 * 60 * 60 * 1000));
            } else {
                date = options.expires;
            }
            expires = '; expires=' + date.toUTCString(); // use expires attribute, max-age is not supported by IE
        }
        // CAUTION: Needed to parenthesize options.path and options.domain
        // in the following expressions, otherwise they evaluate to undefined
        // in the packed version for some reason...
        var path = options.path ? '; path=' + (options.path) : '';
        var domain = options.domain ? '; domain=' + (options.domain) : '';
        var secure = options.secure ? '; secure' : '';
        document.cookie = [name, '=', encodeURIComponent(value), expires, path, domain, secure].join('');
    } else { // only name given, get cookie
        var cookieValue = null;
        if (document.cookie && document.cookie != '') {
            var cookies = document.cookie.split(';');
            for (var i = 0; i < cookies.length; i++) {
                var cookie = jQuery.trim(cookies[i]);
                // Does this cookie string begin with the name we want?
                if (cookie.substring(0, name.length + 1) == (name + '=')) {
                    cookieValue = decodeURIComponent(cookie.substring(name.length + 1));
                    break;
                }
            }
        }
        return cookieValue;
    }
};
