/*
		********************************************
		*                                          *
		* Code: http://westrem.sk                  *
		* Support: support@westrem.sk              *
		*                                          *
		********************************************
*/


/* -------------------------------------------------------------------------------------------------
                                             FUNCTIONS
------------------------------------------------------------------------------------------------- */
dom = jQuery.noConflict(true);

function blankLinks() {
	dom("a[rel='e'][href]").attr("target", "_blank");
}
/* -------------------------------------------------------------------------------------------------
                                           DOCUMENT READY
------------------------------------------------------------------------------------------------- */

dom(document).ready(function() {
	blankLinks();
	
	dom("#check_active").click(function() {
			dom("input[name='files[]']").attr("checked", "checked");
			dom("input[name='docs[]']").attr("checked", "checked");
		}
	);
	dom("#uncheck_active").click(function() {
			dom("input[name='files[]']").removeAttr("checked");
			dom("input[name='docs[]']").removeAttr("checked");
		}
	);
});

