//jQuery for the submitting of hoty vote

$('#feature_wrap').ready( function() {
                var url = $('.nogallery').attr('src');
		$('#feature_wrap').append("<div style='display:none;'>Var is: " + url + "</div>");
		if (typeof url != 'undefined') {
		    $('#feature_wrap').append("<div style='display:none;'>INSIDE is: " + url + "</div>");
		    var test = $('#feature_wrap').find('*[src='+url+']').attr('src');
		    var posHide1 = url.lastIndexOf('-');
		    var posHide2 = url.length - 4;
		    var urlnew1 = url.substring(0, posHide1);
		    var urlnew2 = url.substring(posHide2, url.length);
		    if (posHide1 > '35') { url = urlnew1 + urlnew2; } else { url = url };
		    $('#feature_wrap').find('*[src='+url+']').parent().parent().remove();
		}
});

$(document).ready( function () {
                $('.page-item-164 a').attr('target', '_blank');
});
