Advertisement
Guest User

Untitled

a guest
Apr 16th, 2015
298
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 48.82 KB | None | 0 0
  1.  
  2. /* jQuery Carousel Plugin v1.0
  3. * http://richardscarrott.co.uk/posts/view/jquery-carousel-plugin
  4. *
  5. * Copyright (c) 2010 Richard Scarrott
  6. *
  7. * Dual licensed under the MIT and GPL licenses:
  8. * http://www.opensource.org/licenses/mit-license.php
  9. * http://www.gnu.org/licenses/gpl.html
  10. *
  11. * Requires jQuery v1.3+
  12. *
  13. */
  14.  
  15.  
  16. // alert($().jquery);
  17.  
  18. // Also returns string Ex: "1.3.1"
  19. // alert(jQuery.fn.jquery);
  20.  
  21. jQuery(document).ready(function($){
  22.  
  23.  
  24.  
  25. // prototypal inheritance
  26. if (typeof Object.create !== 'function') {
  27. Object.create = function (o) {
  28. function F() {}
  29. F.prototype = o;
  30. return new F();
  31. };
  32. }
  33.  
  34.  
  35. (function($) {
  36. // ie alias
  37. //var headache = $.browser.msie && $.browser.version.substr(0,1)<9;
  38.  
  39. var headache = "";
  40. // carousel
  41. var Carousel = {
  42. settings: {
  43. itemsPerPage: 1,
  44. itemsPerTransition: 1,
  45. noOfRows: 1,
  46. pagination: true,
  47. nextPrevLinks: true,
  48. speed: 'normal',
  49. easing: 'swing'
  50. },
  51. init: function(el, options) {
  52. if (!el.length) {return false;}
  53. this.options = $.extend({}, this.settings, options);
  54. this.itemIndex = 0;
  55. this.container = el;
  56. this.runner = this.container.find('ul');
  57. this.items = this.runner.children('li');
  58. this.noOfItems = this.items.length;
  59. this.setRunnerWidth();
  60. if (this.noOfItems <= this.options.itemsPerPage) {return false;} // bail if there are too few items to paginate
  61. this.insertMask();
  62. this.noOfPages = Math.ceil((this.noOfItems - this.options.itemsPerPage) / this.options.itemsPerTransition) + 1;
  63. if (this.options.pagination) {this.insertPagination();}
  64. if (this.options.nextPrevLinks) {this.insertNextPrevLinks();}
  65. this.updateBtnStyles();
  66. },
  67. insertMask: function() {
  68. this.runner.wrap('<div class="mask" />');
  69. this.mask = this.container.find('div.mask');
  70.  
  71. //this.mask.css("visibility", "hidden");
  72.  
  73. // set mask height so items can be of varying height
  74. var maskHeight = this.runner.outerHeight(true);
  75. this.mask = this.container.find('div.mask');
  76. this.mask.height(maskHeight);
  77.  
  78. },
  79. setRunnerWidth: function() {
  80. this.noOfItems = Math.round(this.noOfItems / this.options.noOfRows);
  81. var width = this.items.outerWidth(true) * this.noOfItems;
  82. this.runner.width(width);
  83. },
  84. insertPagination: function() {
  85. var i, links = [];
  86. this.paginationLinks = $('<ol class="pagination-links" />');
  87. for (i = 0; i < this.noOfPages; i++) {
  88. links[i] = '<li><a href="#item-' + i + '">' + (i + 1) + '</a></li>';
  89. }
  90. this.paginationLinks
  91. .append(links.join(''))
  92. .appendTo(this.container)
  93. .find('a')
  94. .bind('click.carousel', $.proxy(this, 'paginationHandler'));
  95. },
  96. paginationHandler: function(e) {
  97. this.itemIndex = e.target.hash.substr(1).split('-')[1] * this.options.itemsPerTransition;
  98. this.animate();
  99. return false;
  100. },
  101. insertNextPrevLinks: function() {
  102. this.prevLink = $('<a href="#" class="prev"><i class="icon-fa icon-angle-left"></i></a>').bind('click.carousel', $.proxy(this, 'prevItem')).prependTo(this.container);
  103. this.nextLink = $('<a href="#" class="next"><i class="icon-fa icon-angle-right"></i></a>').bind('click.carousel', $.proxy(this, 'nextItem')).appendTo(this.container);
  104. },
  105. nextItem: function() {
  106. this.itemIndex = this.itemIndex + this.options.itemsPerTransition;
  107. this.animate();
  108. return false;
  109. },
  110. prevItem: function() {
  111. this.itemIndex = this.itemIndex - this.options.itemsPerTransition;
  112. this.animate();
  113. return false;
  114. },
  115. updateBtnStyles: function() {
  116. return false;
  117. if (this.options.pagination) {
  118. this.paginationLinks
  119. .children('li')
  120. .removeClass('current')
  121. .eq(Math.ceil(this.itemIndex / this.options.itemsPerTransition))
  122. .addClass('current');
  123. }
  124.  
  125. if (this.options.nextPrevLinks) {
  126. this.nextLink
  127. .add(this.prevLink)
  128. .removeClass('disabled');
  129. if (this.itemIndex === (this.noOfItems - this.options.itemsPerPage)) {
  130. this.nextLink.addClass('disabled');
  131. }
  132. else if (this.itemIndex === 0) {
  133. this.prevLink.addClass('disabled');
  134. }
  135. }
  136. },
  137. animate: function() {
  138. var nextItem, pos;
  139. // check whether there are enough items to animate to
  140. if (this.itemIndex > (this.noOfItems - this.options.itemsPerPage)) {
  141. this.itemIndex = 0;
  142. // this.itemIndex = this.noOfItems - this.options.itemsPerPage; // go to last panel - items per transition
  143. }
  144. if (this.itemIndex < 0) {
  145. this.itemIndex = this.noOfItems - this.options.itemsPerPage; // go to last panel - items per transition
  146. // this.itemIndex = 0; // go to first
  147. }
  148. nextItem = this.items.eq(this.itemIndex);
  149. pos = nextItem.position();
  150.  
  151. if (headache) {
  152. this.runner
  153. .stop()
  154. .animate({left: -pos.left}, this.options.speed, this.options.easing);
  155. }
  156. else {
  157. this.mask
  158. .stop()
  159. .scrollLeft(pos.left);
  160. }
  161. this.updateBtnStyles();
  162. },
  163. move_to: function(i) {
  164. this.itemIndex = i;
  165. var nextItem, pos;
  166. // check whether there are enough items to animate to
  167. if (this.itemIndex > (this.noOfItems - this.options.itemsPerPage)) {
  168. this.itemIndex = this.noOfItems - this.options.itemsPerPage; // go to last panel - items per transition
  169. }
  170. if (this.itemIndex < 0) {
  171. this.itemIndex = 0; // go to first
  172. }
  173. nextItem = this.items.eq(this.itemIndex);
  174. pos = nextItem.position();
  175.  
  176. if (headache) {
  177. this.runner
  178. .stop()
  179. .animate({left: -pos.left}, this.options.speed, this.options.easing);
  180. }
  181. else {
  182. this.mask
  183. .stop()
  184. .scrollLeft(pos.left);
  185.  
  186. //setTimeout('jQuery(".mask").css("visibility", "visible")', 500);
  187.  
  188. }
  189. this.updateBtnStyles();
  190. },
  191. select_link: function() {
  192. url = document.URL.match(/(http:\/\/)?([a-zA-Z0=9\.\-\_]*)/)[2];
  193. var carou = this;
  194. this.container.find("ul li a").each(function(i,t){
  195. if(t.href.match(url) != null){
  196. $(t).addClass("active");
  197. carou.move_to(parseInt(i/11))
  198. }
  199. });
  200. }
  201.  
  202. };
  203.  
  204. // bridge
  205. $.fn.carousel = function(options) {
  206. return this.each(function() {
  207. var obj = Object.create(Carousel);
  208. obj.init($(this), options);
  209. $.data(this, 'carousel', obj);
  210. });
  211. };
  212. })(jQuery);
  213.  
  214. $("#carousel").append("<div id='topmenu' ></div>");
  215. $("#carousel #topmenu").append(
  216. '<ul>' +
  217. ' <li id="group1">' +
  218.  
  219. '<a href=" http://mariejedig.com" class="topbar-link" onClick="_gaq.push([\'_trackEvent\', \'Top bar\', \'Blog top bar\', \'http://mariejedig.com\']);">Marie Jedig</a>' +
  220. '<a href=" http://twinpeaks.dk" class="topbar-link" onClick="_gaq.push([\'_trackEvent\', \'Top bar\', \'Blog top bar\', \'http://twinpeaks.dk\']);">Twinpeaks</a>' +
  221. '<a href=" http://sillewho.dk" class="topbar-link" onClick="_gaq.push([\'_trackEvent\', \'Top bar\', \'Blog top bar\', \'http://sillewho.dk\']);">SilleWho?</a>' +
  222. '<a href=" http://velvetsnow.dk" class="topbar-link" onClick="_gaq.push([\'_trackEvent\', \'Top bar\', \'Blog top bar\', \'http://velvetsnow.dk\']);">Velvet Snow</a>' +
  223. '<a href=" http://cathrineurhammer.dk" class="topbar-link" onClick="_gaq.push([\'_trackEvent\', \'Top bar\', \'Blog top bar\', \'http://cathrineurhammer.dk\']);">Cathrine Urhammer</a>' +
  224. '<a href=" http://styleintuition.dk" class="topbar-link" onClick="_gaq.push([\'_trackEvent\', \'Top bar\', \'Blog top bar\', \'http://styleintuition.dk\']);">Styleintuition</a>' +
  225. '<a href=" http://guldlog.dk" class="topbar-link" onClick="_gaq.push([\'_trackEvent\', \'Top bar\', \'Blog top bar\', \'http://guldlog.dk\']);">Guldlog</a>' +
  226. '<a href=" http://clamour4glamour.com" class="topbar-link" onClick="_gaq.push([\'_trackEvent\', \'Top bar\', \'Blog top bar\', \'http://clamour4glamour.com\']);">Clamour 4 Glamour</a>' +
  227. ' <a class="dummy" href="http://www.dummy.dk"></a>' +
  228. ' <a class="dummy" href="http://www.dummy.dk"></a>' +
  229. ' <a class="dummy" href="http://www.dummy.dk"></a>' +
  230. ' </li>' +
  231. ' <li id="group29"> ' +
  232. '<a href=" http://missjeanett.dk" class="topbar-link" onClick="_gaq.push([\'_trackEvent\', \'Top bar\', \'Blog top bar\', \'http://missjeanett.dk\']);">Miss Jeanett</a>' +
  233. '<a href=" http://theinsider.dk" class="topbar-link" onClick="_gaq.push([\'_trackEvent\', \'Top bar\', \'Blog top bar\', \'http://theinsider.dk\']);">The Insider</a>' +
  234. '<a href=" http://modemedmere.dk" class="topbar-link" onClick="_gaq.push([\'_trackEvent\', \'Top bar\', \'Blog top bar\', \'http://modemedmere.dk\']);">Mode Med Mere</a>' +
  235. '<a href=" http://emmoemmo.com" class="topbar-link" onClick="_gaq.push([\'_trackEvent\', \'Top bar\', \'Blog top bar\', \'http://emmoemmo.com\']);">Emmo Emmo</a>' +
  236. '<a href=" http://originalfake.dk" class="topbar-link" onClick="_gaq.push([\'_trackEvent\', \'Top bar\', \'Blog top bar\', \'http://originalfake.dk\']);">Original Fake</a>' +
  237. '<a href=" http://frederikkeegel.dk" class="topbar-link" onClick="_gaq.push([\'_trackEvent\', \'Top bar\', \'Blog top bar\', \'http://frederikkeegel.dk\']);">Frederikke Egel</a>' +
  238. '<a href=" http://amaliewessel.dk" class="topbar-link" onClick="_gaq.push([\'_trackEvent\', \'Top bar\', \'Blog top bar\', \'http://amaliewessel.dk\']);">Amalie Wessel</a>' +
  239. '<a href=" http://lavishlavish.com" class="topbar-link" onClick="_gaq.push([\'_trackEvent\', \'Top bar\', \'Blog top bar\', \'http://lavishlavish.com\']);">Lavish Lavish</a>' +
  240. ' <a class="dummy" href="http://www.dummy.dk"></a>' +
  241. ' <a class="dummy" href="http://www.dummy.dk"></a>' +
  242. ' <a class="dummy" href="http://www.dummy.dk"></a>' +
  243. ' </li>' +
  244. ' <li id="group2"> ' +
  245. '<a href=" http://tinamarias.com/" class="topbar-link" onClick="_gaq.push([\'_trackEvent\', \'Top bar\', \'Blog top bar\', \'http://tinamarias.com/\']);">Tina Maria</a>' +
  246. '<a href=" http://blogbysandra.com" class="topbar-link" onClick="_gaq.push([\'_trackEvent\', \'Top bar\', \'Blog top bar\', \'http://blogbysandra.com\']);">Sandra Willer</a>' +
  247. '<a href=" http://selinavisbech.com" class="topbar-link" onClick="_gaq.push([\'_trackEvent\', \'Top bar\', \'Blog top bar\', \'http://selinavisbech.com\']);">Selina Visbech</a>' +
  248. '<a href=" http://isabellathordsen.dk/" class="topbar-link" onClick="_gaq.push([\'_trackEvent\', \'Top bar\', \'Blog top bar\', \'http://isabellathordsen.dk/\']);">Isabella Thordsen</a>' +
  249. '<a href=" http://sidseloglasse.com/" class="topbar-link" onClick="_gaq.push([\'_trackEvent\', \'Top bar\', \'Blog top bar\', \'http://sidseloglasse.com/\']);">Sidsel og Lasse</a>' +
  250. '<a href=" http://miconfesion.dk" class="topbar-link" onClick="_gaq.push([\'_trackEvent\', \'Top bar\', \'Blog top bar\', \'http://miconfesion.dk\']);">Mi Confesion</a>' +
  251. '<a href=" http://simonemoelle.dk" class="topbar-link" onClick="_gaq.push([\'_trackEvent\', \'Top bar\', \'Blog top bar\', \'http://simonemoelle.dk\']);">Simone Moelle</a>' +
  252. '<a href=" http://rikkekroeger.dk" class="topbar-link" onClick="_gaq.push([\'_trackEvent\', \'Top bar\', \'Blog top bar\', \'http://rikkekroeger.dk\']);">Rikke Krøger</a>' +
  253. ' <a class="dummy" href="http://www.dummy.dk"></a>' +
  254. ' <a class="dummy" href="http://www.dummy.dk"></a>' +
  255. ' <a class="dummy" href="http://www.dummy.dk"></a>' +
  256. ' </li>' +
  257. ' <li id="group34"> ' +
  258. '<a href=" http://johannekohlmetz.dk" class="topbar-link" onClick="_gaq.push([\'_trackEvent\', \'Top bar\', \'Blog top bar\', \'http://johannekohlmetz.dk\']);">Johanne Kohlmetz</a>' +
  259. '<a href=" http://twinnies.dk" class="topbar-link" onClick="_gaq.push([\'_trackEvent\', \'Top bar\', \'Blog top bar\', \'http://twinnies.dk\']);">Twinnies</a>' +
  260. '<a href=" http://gardum.dk" class="topbar-link" onClick="_gaq.push([\'_trackEvent\', \'Top bar\', \'Blog top bar\', \'http://gardum.dk\']);">Gardum</a>' +
  261. '<a href=" http://fashionary.dk" class="topbar-link" onClick="_gaq.push([\'_trackEvent\', \'Top bar\', \'Blog top bar\', \'http://fashionary.dk\']);">Fashionary</a>' +
  262. '<a href=" http://sofieaviaja.com" class="topbar-link" onClick="_gaq.push([\'_trackEvent\', \'Top bar\', \'Blog top bar\', \'http://sofieaviaja.com\']);">Sofie Aviaja</a>' +
  263. '<a href=" http://pagik.dk" class="topbar-link" onClick="_gaq.push([\'_trackEvent\', \'Top bar\', \'Blog top bar\', \'http://pagik.dk\']);">Pagik</a>' +
  264. '<a href=" http://dailystylediary.com" class="topbar-link" onClick="_gaq.push([\'_trackEvent\', \'Top bar\', \'Blog top bar\', \'http://dailystylediary.com\']);">Daily Style Diary</a>' +
  265. '<a href=" http://thetiger.dk" class="topbar-link" onClick="_gaq.push([\'_trackEvent\', \'Top bar\', \'Blog top bar\', \'http://thetiger.dk\']);">The Tiger</a>' +
  266. ' <a class="dummy" href="http://www.dummy.dk"></a>' +
  267. ' <a class="dummy" href="http://www.dummy.dk"></a>' +
  268. ' <a class="dummy" href="http://www.dummy.dk"></a>' +
  269. ' </li>' +
  270. ' <li id="group38"> ' +
  271. '<a href=" http://carolineevigglad.com" class="topbar-link" onClick="_gaq.push([\'_trackEvent\', \'Top bar\', \'Blog top bar\', \'http://carolineevigglad.com\']);">Caroline Evigglad</a>' +
  272. '<a href=" http://bittebitte.dk" class="topbar-link" onClick="_gaq.push([\'_trackEvent\', \'Top bar\', \'Blog top bar\', \'http://bittebitte.dk\']);">Bitte Bitte</a>' +
  273. '<a href=" http://brigidamartinez.dk" class="topbar-link" onClick="_gaq.push([\'_trackEvent\', \'Top bar\', \'Blog top bar\', \'http://brigidamartinez.dk\']);">Brigida Martinez</a>' +
  274. '<a href=" http://theimpressionista.com" class="topbar-link" onClick="_gaq.push([\'_trackEvent\', \'Top bar\', \'Blog top bar\', \'http://theimpressionista.com\']);">The Impressionista</a>' +
  275. '<a href=" http://fashionvictim.dk" class="topbar-link" onClick="_gaq.push([\'_trackEvent\', \'Top bar\', \'Blog top bar\', \'http://fashionvictim.dk\']);">Fashion Victim</a>' +
  276. '<a href=" http://signemorkebergsjostrom.dk" class="topbar-link" onClick="_gaq.push([\'_trackEvent\', \'Top bar\', \'Blog top bar\', \'http://signemorkebergsjostrom.dk\']);">Signe Mørkeberg Sjøstrøm</a>' +
  277. '<a href=" http://sofiescloset.dk" class="topbar-link" onClick="_gaq.push([\'_trackEvent\', \'Top bar\', \'Blog top bar\', \'http://sofiescloset.dk\']);">Sofies Closet</a>' +
  278. ' <a class="dummy" href="http://www.dummy.dk"></a>' +
  279. ' <a class="dummy" href="http://www.dummy.dk"></a>' +
  280. ' <a class="dummy" href="http://www.dummy.dk"></a>' +
  281. ' <a class="dummy" href="http://www.dummy.dk"></a>' +
  282. ' </li>' +
  283. ' <li id="group3"> ' +
  284. '<a href=" http://annawurtz.com" class="topbar-link" onClick="_gaq.push([\'_trackEvent\', \'Top bar\', \'Blog top bar\', \'http://annawurtz.com\']);">Anna Würtz</a>' +
  285. '<a href=" http://fashionbycaroline.dk" class="topbar-link" onClick="_gaq.push([\'_trackEvent\', \'Top bar\', \'Blog top bar\', \'http://fashionbycaroline.dk\']);">Fashion by Caroline</a>' +
  286. '<a href=" http://themodebook.com" class="topbar-link" onClick="_gaq.push([\'_trackEvent\', \'Top bar\', \'Blog top bar\', \'http://themodebook.com\']);">The Modebook</a>' +
  287. '<a href=" http://andtheblack.dk/" class="topbar-link" onClick="_gaq.push([\'_trackEvent\', \'Top bar\', \'Blog top bar\', \'http://andtheblack.dk/\']);">And the black</a>' +
  288. '<a href=" http://emmasilke.dk" class="topbar-link" onClick="_gaq.push([\'_trackEvent\', \'Top bar\', \'Blog top bar\', \'http://emmasilke.dk\']);">Emma Silke</a>' +
  289. '<a href=" http://highonsophie.dk" class="topbar-link" onClick="_gaq.push([\'_trackEvent\', \'Top bar\', \'Blog top bar\', \'http://highonsophie.dk\']);">High on Sophie</a>' +
  290. '<a href=" http://scentoffashion.dk" class="topbar-link" onClick="_gaq.push([\'_trackEvent\', \'Top bar\', \'Blog top bar\', \'http://scentoffashion.dk\']);">Scent of Fashion</a>' +
  291. '<a href=" http://whittaheart.dk" class="topbar-link" onClick="_gaq.push([\'_trackEvent\', \'Top bar\', \'Blog top bar\', \'http://whittaheart.dk\']);">Alberte Whitta</a>' +
  292. ' <a class="dummy" href="http://www.dummy.dk"></a>' +
  293. ' <a class="dummy" href="http://www.dummy.dk"></a>' +
  294. ' <a class="dummy" href="http://www.dummy.dk"></a>' +
  295. ' </li>' +
  296. ' <li id="group4"> ' +
  297. '<a href=" http://likeblack.dk" class="topbar-link" onClick="_gaq.push([\'_trackEvent\', \'Top bar\', \'Blog top bar\', \'http://likeblack.dk\']);">Like Black</a>' +
  298. '<a href=" http://katrinemork.com" class="topbar-link" onClick="_gaq.push([\'_trackEvent\', \'Top bar\', \'Blog top bar\', \'http://katrinemork.com\']);">Mørk</a>' +
  299. '<a href=" http://fashionbyfrium.com" class="topbar-link" onClick="_gaq.push([\'_trackEvent\', \'Top bar\', \'Blog top bar\', \'http://fashionbyfrium.com\']);">Fashion by Frium</a>' +
  300. '<a href=" http://julievonlyck.dk" class="topbar-link" onClick="_gaq.push([\'_trackEvent\', \'Top bar\', \'Blog top bar\', \'http://julievonlyck.dk\']);">Julie von Lyck</a>' +
  301. '<a href=" http://malenesandgaard.com" class="topbar-link" onClick="_gaq.push([\'_trackEvent\', \'Top bar\', \'Blog top bar\', \'http://malenesandgaard.com\']);">Malene Sandgaard</a>' +
  302. '<a href=" http://nadialinevonbach.com" class="topbar-link" onClick="_gaq.push([\'_trackEvent\', \'Top bar\', \'Blog top bar\', \'http://nadialinevonbach.com\']);">Nadialine von Bach</a>' +
  303. '<a href=" http://fudjan.com" class="topbar-link" onClick="_gaq.push([\'_trackEvent\', \'Top bar\', \'Blog top bar\', \'http://fudjan.com\']);">Fudjan</a>' +
  304. ' <a class="dummy" href="http://www.dummy.dk"></a>' +
  305. ' <a class="dummy" href="http://www.dummy.dk"></a>' +
  306. ' <a class="dummy" href="http://www.dummy.dk"></a>' +
  307. ' <a class="dummy" href="http://www.dummy.dk"></a>' +
  308. ' </li>' +
  309. ' <li id="group5"> ' +
  310. '<a href=" http://fashionbones.dk" class="topbar-link" onClick="_gaq.push([\'_trackEvent\', \'Top bar\', \'Blog top bar\', \'http://fashionbones.dk\']);">Fashionbones</a>' +
  311. '<a href=" http://birgitkool.com" class="topbar-link" onClick="_gaq.push([\'_trackEvent\', \'Top bar\', \'Blog top bar\', \'http://birgitkool.com\']);">Birgit Kool</a>' +
  312. '<a href=" http://fashionmyway.dk" class="topbar-link" onClick="_gaq.push([\'_trackEvent\', \'Top bar\', \'Blog top bar\', \'http://fashionmyway.dk\']);">Fashion My Way</a>' +
  313. '<a href=" http://amydyrholm.dk" class="topbar-link" onClick="_gaq.push([\'_trackEvent\', \'Top bar\', \'Blog top bar\', \'http://amydyrholm.dk\']);">Amy Dyrholm</a>' +
  314. '<a href=" http://blogliebling.dk" class="topbar-link" onClick="_gaq.push([\'_trackEvent\', \'Top bar\', \'Blog top bar\', \'http://blogliebling.dk\']);">Blog Liebling</a>' +
  315. '<a href=" http://inabob.dk" class="topbar-link" onClick="_gaq.push([\'_trackEvent\', \'Top bar\', \'Blog top bar\', \'http://inabob.dk\']);">Inabob</a>' +
  316. '<a href=" http://another-me.dk" class="topbar-link" onClick="_gaq.push([\'_trackEvent\', \'Top bar\', \'Blog top bar\', \'http://another-me.dk\']);">Another Me</a>' +
  317. ' <a class="dummy" href="http://www.dummy.dk"></a>' +
  318. ' <a class="dummy" href="http://www.dummy.dk"></a>' +
  319. ' <a class="dummy" href="http://www.dummy.dk"></a>' +
  320. ' <a class="dummy" href="http://www.dummy.dk"></a>' +
  321. ' </li>' +
  322. ' <li id="group27"> ' +
  323. '<a href=" http://emmamartiny.dk" class="topbar-link" onClick="_gaq.push([\'_trackEvent\', \'Top bar\', \'Blog top bar\', \'http://emmamartiny.dk\']);">Emma Martiny</a>' +
  324. '<a href=" http://ohmygown.dk" class="topbar-link" onClick="_gaq.push([\'_trackEvent\', \'Top bar\', \'Blog top bar\', \'http://ohmygown.dk\']);">Oh My Gown</a>' +
  325. '<a href=" http://nervøsvelour.dk" class="topbar-link" onClick="_gaq.push([\'_trackEvent\', \'Top bar\', \'Blog top bar\', \'http://nervøsvelour.dk\']);">Nervøs Velour</a>' +
  326. '<a href=" http://nanabech.com" class="topbar-link" onClick="_gaq.push([\'_trackEvent\', \'Top bar\', \'Blog top bar\', \'http://nanabech.com\']);">Nana Bech</a>' +
  327. '<a href=" http://nicolines.com" class="topbar-link" onClick="_gaq.push([\'_trackEvent\', \'Top bar\', \'Blog top bar\', \'http://nicolines.com\']);">Nicolines</a>' +
  328. '<a href=" http://amandabugge.dk" class="topbar-link" onClick="_gaq.push([\'_trackEvent\', \'Top bar\', \'Blog top bar\', \'http://amandabugge.dk\']);">Amanda Bugge</a>' +
  329. '<a href=" http://smillegolightly.com" class="topbar-link" onClick="_gaq.push([\'_trackEvent\', \'Top bar\', \'Blog top bar\', \'http://smillegolightly.com\']);">Smille Go Lightly</a>' +
  330. ' <a class="dummy" href="http://www.dummy.dk"></a>' +
  331. ' <a class="dummy" href="http://www.dummy.dk"></a>' +
  332. ' <a class="dummy" href="http://www.dummy.dk"></a>' +
  333. ' <a class="dummy" href="http://www.dummy.dk"></a>' +
  334. ' </li>' +
  335. ' <li id="group40"> ' +
  336. '<a href=" http://simonetajmer.dk" class="topbar-link" onClick="_gaq.push([\'_trackEvent\', \'Top bar\', \'Blog top bar\', \'http://simonetajmer.dk\']);">Simone Tajmer</a>' +
  337. '<a href=" http://byml.dk" class="topbar-link" onClick="_gaq.push([\'_trackEvent\', \'Top bar\', \'Blog top bar\', \'http://byml.dk\']);">By ML</a>' +
  338. '<a href=" http://dittesblog.dk" class="topbar-link" onClick="_gaq.push([\'_trackEvent\', \'Top bar\', \'Blog top bar\', \'http://dittesblog.dk\']);">Dittes Blog</a>' +
  339. '<a href=" http://lalunaire.net" class="topbar-link" onClick="_gaq.push([\'_trackEvent\', \'Top bar\', \'Blog top bar\', \'http://lalunaire.net\']);">La Lunaire</a>' +
  340. '<a href=" http://soulpaustian.dk" class="topbar-link" onClick="_gaq.push([\'_trackEvent\', \'Top bar\', \'Blog top bar\', \'http://soulpaustian.dk\']);">SoulPAUSTIAN</a>' +
  341. '<a href=" http://shopkat.dk" class="topbar-link" onClick="_gaq.push([\'_trackEvent\', \'Top bar\', \'Blog top bar\', \'http://shopkat.dk\']);">SHOPKAT</a>' +
  342. '<a href=" http://sofieparelius.dk" class="topbar-link" onClick="_gaq.push([\'_trackEvent\', \'Top bar\', \'Blog top bar\', \'http://sofieparelius.dk\']);">Sofie Parelius</a>' +
  343. ' <a class="dummy" href="http://www.dummy.dk"></a>' +
  344. ' <a class="dummy" href="http://www.dummy.dk"></a>' +
  345. ' <a class="dummy" href="http://www.dummy.dk"></a>' +
  346. ' <a class="dummy" href="http://www.dummy.dk"></a>' +
  347. ' </li>' +
  348. ' <li id="group6"> ' +
  349. '<a href=" http://pudderdaaserne.dk" class="topbar-link" onClick="_gaq.push([\'_trackEvent\', \'Top bar\', \'Blog top bar\', \'http://pudderdaaserne.dk\']);">Pudderdåserne</a>' +
  350. '<a href=" http://rikkesmakeupblog.dk" class="topbar-link" onClick="_gaq.push([\'_trackEvent\', \'Top bar\', \'Blog top bar\', \'http://rikkesmakeupblog.dk\']);">Rikkes Makeup Blog</a>' +
  351. '<a href=" http://nuria.dk" class="topbar-link" onClick="_gaq.push([\'_trackEvent\', \'Top bar\', \'Blog top bar\', \'http://nuria.dk\']);">Nuria</a>' +
  352. '<a href=" http://beautyhive.dk" class="topbar-link" onClick="_gaq.push([\'_trackEvent\', \'Top bar\', \'Blog top bar\', \'http://beautyhive.dk\']);">Beautyhive</a>' +
  353. '<a href=" http://nannasbeautyblog.dk/" class="topbar-link" onClick="_gaq.push([\'_trackEvent\', \'Top bar\', \'Blog top bar\', \'http://nannasbeautyblog.dk/\']);">Nannas Beautyblog</a>' +
  354. '<a href=" http://smuk-blog.dk" class="topbar-link" onClick="_gaq.push([\'_trackEvent\', \'Top bar\', \'Blog top bar\', \'http://smuk-blog.dk\']);">Smuk Blog</a>' +
  355. '<a href=" http://itsmemelanie.dk" class="topbar-link" onClick="_gaq.push([\'_trackEvent\', \'Top bar\', \'Blog top bar\', \'http://itsmemelanie.dk\']);">Its me Melanie</a>' +
  356. ' <a class="dummy" href="http://www.dummy.dk"></a>' +
  357. ' <a class="dummy" href="http://www.dummy.dk"></a>' +
  358. ' <a class="dummy" href="http://www.dummy.dk"></a>' +
  359. ' <a class="dummy" href="http://www.dummy.dk"></a>' +
  360. ' </li>' +
  361. ' <li id="group7"> ' +
  362. '<a href=" http://lortemor.dk" class="topbar-link" onClick="_gaq.push([\'_trackEvent\', \'Top bar\', \'Blog top bar\', \'http://lortemor.dk\']);">Lortemor</a>' +
  363. '<a href=" http://bastabum.dk" class="topbar-link" onClick="_gaq.push([\'_trackEvent\', \'Top bar\', \'Blog top bar\', \'http://bastabum.dk\']);">Bastabum</a>' +
  364. '<a href=" http://farudenfilter.dk" class="topbar-link" onClick="_gaq.push([\'_trackEvent\', \'Top bar\', \'Blog top bar\', \'http://farudenfilter.dk\']);">Far uden filter</a>' +
  365. '<a href=" http://cstadager.dk" class="topbar-link" onClick="_gaq.push([\'_trackEvent\', \'Top bar\', \'Blog top bar\', \'http://cstadager.dk\']);">C Stadager</a>' +
  366. '<a href=" http://frkvilstrup.dk" class="topbar-link" onClick="_gaq.push([\'_trackEvent\', \'Top bar\', \'Blog top bar\', \'http://frkvilstrup.dk\']);">Frk Vilstrup</a>' +
  367. '<a href=" http://nanna-nova.dk" class="topbar-link" onClick="_gaq.push([\'_trackEvent\', \'Top bar\', \'Blog top bar\', \'http://nanna-nova.dk\']);">Nanna Nova</a>' +
  368. '<a href=" http://ridersontherainbow.com" class="topbar-link" onClick="_gaq.push([\'_trackEvent\', \'Top bar\', \'Blog top bar\', \'http://ridersontherainbow.com\']);">Riders On The Rainbow</a>' +
  369. '<a href=" http://mamamaruska.dk" class="topbar-link" onClick="_gaq.push([\'_trackEvent\', \'Top bar\', \'Blog top bar\', \'http://mamamaruska.dk\']);">MamaMaruska</a>' +
  370. ' <a class="dummy" href="http://www.dummy.dk"></a>' +
  371. ' <a class="dummy" href="http://www.dummy.dk"></a>' +
  372. ' <a class="dummy" href="http://www.dummy.dk"></a>' +
  373. ' </li>' +
  374. ' <li id="group28"> ' +
  375. '<a href=" http://copenhagenkiddo.dk" class="topbar-link" onClick="_gaq.push([\'_trackEvent\', \'Top bar\', \'Blog top bar\', \'http://copenhagenkiddo.dk\']);">Copenhagen Kiddo</a>' +
  376. '<a href=" http://plummum.dk" class="topbar-link" onClick="_gaq.push([\'_trackEvent\', \'Top bar\', \'Blog top bar\', \'http://plummum.dk\']);">Plum Mum</a>' +
  377. '<a href=" http://denormale.dk" class="topbar-link" onClick="_gaq.push([\'_trackEvent\', \'Top bar\', \'Blog top bar\', \'http://denormale.dk\']);">De Normale</a>' +
  378. '<a href=" http://fitmom.dk" class="topbar-link" onClick="_gaq.push([\'_trackEvent\', \'Top bar\', \'Blog top bar\', \'http://fitmom.dk\']);">Fit Mom</a>' +
  379. '<a href=" http://ostfronten.dk" class="topbar-link" onClick="_gaq.push([\'_trackEvent\', \'Top bar\', \'Blog top bar\', \'http://ostfronten.dk\']);">Østfronten</a>' +
  380. '<a href=" http://minilove.dk" class="topbar-link" onClick="_gaq.push([\'_trackEvent\', \'Top bar\', \'Blog top bar\', \'http://minilove.dk\']);">Mini Love</a>' +
  381. '<a href=" http://fashionmom.dk" class="topbar-link" onClick="_gaq.push([\'_trackEvent\', \'Top bar\', \'Blog top bar\', \'http://fashionmom.dk\']);">Fashion Mom</a>' +
  382. ' <a class="dummy" href="http://www.dummy.dk"></a>' +
  383. ' <a class="dummy" href="http://www.dummy.dk"></a>' +
  384. ' <a class="dummy" href="http://www.dummy.dk"></a>' +
  385. ' <a class="dummy" href="http://www.dummy.dk"></a>' +
  386. ' </li>' +
  387. ' <li id="group41"> ' +
  388. '<a href=" http://emmakathrine.dk" class="topbar-link" onClick="_gaq.push([\'_trackEvent\', \'Top bar\', \'Blog top bar\', \'http://emmakathrine.dk\']);">Emma Kathrine</a>' +
  389. '<a href=" http://juliekloeve.com" class="topbar-link" onClick="_gaq.push([\'_trackEvent\', \'Top bar\', \'Blog top bar\', \'http://juliekloeve.com\']);">Julie Kløve</a>' +
  390. '<a href=" http://linesofie.dk" class="topbar-link" onClick="_gaq.push([\'_trackEvent\', \'Top bar\', \'Blog top bar\', \'http://linesofie.dk\']);">Line Sofie</a>' +
  391. '<a href=" http://annadue.com" class="topbar-link" onClick="_gaq.push([\'_trackEvent\', \'Top bar\', \'Blog top bar\', \'http://annadue.com\']);">Anna Due</a>' +
  392. '<a href=" http://irinathediva.dk" class="topbar-link" onClick="_gaq.push([\'_trackEvent\', \'Top bar\', \'Blog top bar\', \'http://irinathediva.dk\']);">Irina Babenko</a>' +
  393. '<a href=" http://nutidensmor.dk" class="topbar-link" onClick="_gaq.push([\'_trackEvent\', \'Top bar\', \'Blog top bar\', \'http://nutidensmor.dk\']);">Nutidensmor</a>' +
  394. '<a href=" http://lilletutogmor.dk" class="topbar-link" onClick="_gaq.push([\'_trackEvent\', \'Top bar\', \'Blog top bar\', \'http://lilletutogmor.dk\']);">Lilletut og mor</a>' +
  395. ' <a class="dummy" href="http://www.dummy.dk"></a>' +
  396. ' <a class="dummy" href="http://www.dummy.dk"></a>' +
  397. ' <a class="dummy" href="http://www.dummy.dk"></a>' +
  398. ' <a class="dummy" href="http://www.dummy.dk"></a>' +
  399. ' </li>' +
  400. ' <li id="group52"> ' +
  401. '<a href=" http://ivaerksaettermor.dk" class="topbar-link" onClick="_gaq.push([\'_trackEvent\', \'Top bar\', \'Blog top bar\', \'http://ivaerksaettermor.dk\']);">Iværksættermor</a>' +
  402. '<a href=" http://tvillingernesmor.dk" class="topbar-link" onClick="_gaq.push([\'_trackEvent\', \'Top bar\', \'Blog top bar\', \'http://tvillingernesmor.dk\']);">Tvillingernes Mor</a>' +
  403. '<a href=" http://blondetoner.dk" class="topbar-link" onClick="_gaq.push([\'_trackEvent\', \'Top bar\', \'Blog top bar\', \'http://blondetoner.dk\']);">Blonde Toner</a>' +
  404. '<a href=" http://veltz.dk" class="topbar-link" onClick="_gaq.push([\'_trackEvent\', \'Top bar\', \'Blog top bar\', \'http://veltz.dk\']);">DILF aka Martin Veltz</a>' +
  405. '<a href=" http://mortilto.dk" class="topbar-link" onClick="_gaq.push([\'_trackEvent\', \'Top bar\', \'Blog top bar\', \'http://mortilto.dk\']);">Mor til to</a>' +
  406. '<a href=" http://forkidsblog.dk" class="topbar-link" onClick="_gaq.push([\'_trackEvent\', \'Top bar\', \'Blog top bar\', \'http://forkidsblog.dk\']);">Forkids Blog</a>' +
  407. '<a href=" http://lillemorblog.dk" class="topbar-link" onClick="_gaq.push([\'_trackEvent\', \'Top bar\', \'Blog top bar\', \'http://lillemorblog.dk\']);">Lillemor</a>' +
  408. ' <a class="dummy" href="http://www.dummy.dk"></a>' +
  409. ' <a class="dummy" href="http://www.dummy.dk"></a>' +
  410. ' <a class="dummy" href="http://www.dummy.dk"></a>' +
  411. ' <a class="dummy" href="http://www.dummy.dk"></a>' +
  412. ' </li>' +
  413. ' <li id="group10"> ' +
  414. '<a href=" http://fagandfab.com" class="topbar-link" onClick="_gaq.push([\'_trackEvent\', \'Top bar\', \'Blog top bar\', \'http://fagandfab.com\']);">FAG AND FAB</a>' +
  415. '<a href=" http://mikeafsharian.dk" class="topbar-link" onClick="_gaq.push([\'_trackEvent\', \'Top bar\', \'Blog top bar\', \'http://mikeafsharian.dk\']);">Mike Afsharian</a>' +
  416. '<a href=" http://mortenandreasen.com" class="topbar-link" onClick="_gaq.push([\'_trackEvent\', \'Top bar\', \'Blog top bar\', \'http://mortenandreasen.com\']);">Morten Andreasen</a>' +
  417. '<a href=" http://gentlemanual.dk" class="topbar-link" onClick="_gaq.push([\'_trackEvent\', \'Top bar\', \'Blog top bar\', \'http://gentlemanual.dk\']);">Gentle Manual</a>' +
  418. '<a href=" http://mixedcph.com" class="topbar-link" onClick="_gaq.push([\'_trackEvent\', \'Top bar\', \'Blog top bar\', \'http://mixedcph.com\']);">MIXED CPH</a>' +
  419. '<a href=" http://silaskieffer.dk" class="topbar-link" onClick="_gaq.push([\'_trackEvent\', \'Top bar\', \'Blog top bar\', \'http://silaskieffer.dk\']);">Silas Kieffer</a>' +
  420. ' <a class="dummy" href="http://www.dummy.dk"></a>' +
  421. ' <a class="dummy" href="http://www.dummy.dk"></a>' +
  422. ' <a class="dummy" href="http://www.dummy.dk"></a>' +
  423. ' <a class="dummy" href="http://www.dummy.dk"></a>' +
  424. ' <a class="dummy" href="http://www.dummy.dk"></a>' +
  425. ' </li>' +
  426. ' <li id="group9"> ' +
  427. '<a href=" http://detskalsmageafnoget.dk" class="topbar-link" onClick="_gaq.push([\'_trackEvent\', \'Top bar\', \'Blog top bar\', \'http://detskalsmageafnoget.dk\']);">Det skal smage af noget</a>' +
  428. '<a href=" http://ganeoggaffel.dk" class="topbar-link" onClick="_gaq.push([\'_trackEvent\', \'Top bar\', \'Blog top bar\', \'http://ganeoggaffel.dk\']);">Gane & Gaffel</a>' +
  429. '<a href=" http://cutecarbs.com" class="topbar-link" onClick="_gaq.push([\'_trackEvent\', \'Top bar\', \'Blog top bar\', \'http://cutecarbs.com\']);">Cute Carbs</a>' +
  430. '<a href=" http://sundmums.dk" class="topbar-link" onClick="_gaq.push([\'_trackEvent\', \'Top bar\', \'Blog top bar\', \'http://sundmums.dk\']);">Sund Mums</a>' +
  431. '<a href=" http://beetrootbakery.dk" class="topbar-link" onClick="_gaq.push([\'_trackEvent\', \'Top bar\', \'Blog top bar\', \'http://beetrootbakery.dk\']);">Beetroot Bakery</a>' +
  432. '<a href=" http://thefoodie.dk" class="topbar-link" onClick="_gaq.push([\'_trackEvent\', \'Top bar\', \'Blog top bar\', \'http://thefoodie.dk\']);">The Foodie</a>' +
  433. ' <a class="dummy" href="http://www.dummy.dk"></a>' +
  434. ' <a class="dummy" href="http://www.dummy.dk"></a>' +
  435. ' <a class="dummy" href="http://www.dummy.dk"></a>' +
  436. ' <a class="dummy" href="http://www.dummy.dk"></a>' +
  437. ' <a class="dummy" href="http://www.dummy.dk"></a>' +
  438. ' </li>' +
  439. ' <li id="group32"> ' +
  440. '<a href=" http://sundemadpakker.dk" class="topbar-link" onClick="_gaq.push([\'_trackEvent\', \'Top bar\', \'Blog top bar\', \'http://sundemadpakker.dk\']);">Sunde Madpakker</a>' +
  441. '<a href=" http://amillionmiless.com" class="topbar-link" onClick="_gaq.push([\'_trackEvent\', \'Top bar\', \'Blog top bar\', \'http://amillionmiless.com\']);">A Million Miles</a>' +
  442. '<a href=" http://anna-mad.dk" class="topbar-link" onClick="_gaq.push([\'_trackEvent\', \'Top bar\', \'Blog top bar\', \'http://anna-mad.dk\']);">Anna Mad</a>' +
  443. '<a href=" http://byguldahl.dk" class="topbar-link" onClick="_gaq.push([\'_trackEvent\', \'Top bar\', \'Blog top bar\', \'http://byguldahl.dk\']);">By Guldahl</a>' +
  444. '<a href=" http://gipsynginger.com" class="topbar-link" onClick="_gaq.push([\'_trackEvent\', \'Top bar\', \'Blog top bar\', \'http://gipsynginger.com\']);">Gipsy n Ginger</a>' +
  445. '<a href=" http://juliebruun.com" class="topbar-link" onClick="_gaq.push([\'_trackEvent\', \'Top bar\', \'Blog top bar\', \'http://juliebruun.com\']);">Julie Bruun</a>' +
  446. ' <a class="dummy" href="http://www.dummy.dk"></a>' +
  447. ' <a class="dummy" href="http://www.dummy.dk"></a>' +
  448. ' <a class="dummy" href="http://www.dummy.dk"></a>' +
  449. ' <a class="dummy" href="http://www.dummy.dk"></a>' +
  450. ' <a class="dummy" href="http://www.dummy.dk"></a>' +
  451. ' </li>' +
  452. ' <li id="group23"> ' +
  453. '<a href=" http://livingbyckk.dk" class="topbar-link" onClick="_gaq.push([\'_trackEvent\', \'Top bar\', \'Blog top bar\', \'http://livingbyckk.dk\']);">Living by CKK</a>' +
  454. '<a href=" http://touchofluxe.com" class="topbar-link" onClick="_gaq.push([\'_trackEvent\', \'Top bar\', \'Blog top bar\', \'http://touchofluxe.com\']);">Touch of luxe</a>' +
  455. '<a href=" http://kreavilla.com" class="topbar-link" onClick="_gaq.push([\'_trackEvent\', \'Top bar\', \'Blog top bar\', \'http://kreavilla.com\']);">Kreavilla</a>' +
  456. '<a href=" http://frokenoverspringshandling.dk" class="topbar-link" onClick="_gaq.push([\'_trackEvent\', \'Top bar\', \'Blog top bar\', \'http://frokenoverspringshandling.dk\']);">Frk Overspringshandling</a>' +
  457. '<a href=" http://therustyhome.dk" class="topbar-link" onClick="_gaq.push([\'_trackEvent\', \'Top bar\', \'Blog top bar\', \'http://therustyhome.dk\']);">The Rusty Home</a>' +
  458. '<a href=" http://pantone4c.dk" class="topbar-link" onClick="_gaq.push([\'_trackEvent\', \'Top bar\', \'Blog top bar\', \'http://pantone4c.dk\']);">Pantone4C</a>' +
  459. '<a href=" http://casalicious.dk" class="topbar-link" onClick="_gaq.push([\'_trackEvent\', \'Top bar\', \'Blog top bar\', \'http://casalicious.dk\']);">Casalicious</a>' +
  460. ' <a class="dummy" href="http://www.dummy.dk"></a>' +
  461. ' <a class="dummy" href="http://www.dummy.dk"></a>' +
  462. ' <a class="dummy" href="http://www.dummy.dk"></a>' +
  463. ' <a class="dummy" href="http://www.dummy.dk"></a>' +
  464. ' </li>' +
  465. ' <li id="group17"> ' +
  466. '<a href=" http://bedreform.nu" class="topbar-link" onClick="_gaq.push([\'_trackEvent\', \'Top bar\', \'Blog top bar\', \'http://bedreform.nu\']);">Bedreform</a>' +
  467. '<a href=" http://helsematilde.com" class="topbar-link" onClick="_gaq.push([\'_trackEvent\', \'Top bar\', \'Blog top bar\', \'http://helsematilde.com\']);">Helse Matilde</a>' +
  468. '<a href=" http://fitnrun.dk" class="topbar-link" onClick="_gaq.push([\'_trackEvent\', \'Top bar\', \'Blog top bar\', \'http://fitnrun.dk\']);">Fit N Run</a>' +
  469. '<a href=" http://mayadroem.dk" class="topbar-link" onClick="_gaq.push([\'_trackEvent\', \'Top bar\', \'Blog top bar\', \'http://mayadroem.dk\']);">Mayadroem</a>' +
  470. '<a href=" http://mathildemac.dk" class="topbar-link" onClick="_gaq.push([\'_trackEvent\', \'Top bar\', \'Blog top bar\', \'http://mathildemac.dk\']);">Mathilde Mac Donald</a>' +
  471. '<a href=" http://mettelyngholm.dk" class="topbar-link" onClick="_gaq.push([\'_trackEvent\', \'Top bar\', \'Blog top bar\', \'http://mettelyngholm.dk\']);">Mette Lyngholm</a>' +
  472. ' <a class="dummy" href="http://www.dummy.dk"></a>' +
  473. ' <a class="dummy" href="http://www.dummy.dk"></a>' +
  474. ' <a class="dummy" href="http://www.dummy.dk"></a>' +
  475. ' <a class="dummy" href="http://www.dummy.dk"></a>' +
  476. ' <a class="dummy" href="http://www.dummy.dk"></a>' +
  477. ' </li>' +
  478. ' <li id="group25"> ' +
  479. '<a href=" http://carolinethorsfelt.dk" class="topbar-link" onClick="_gaq.push([\'_trackEvent\', \'Top bar\', \'Blog top bar\', \'http://carolinethorsfelt.dk\']);">Caroline Thorsfelt</a>' +
  480. '<a href=" http://eilime.com" class="topbar-link" onClick="_gaq.push([\'_trackEvent\', \'Top bar\', \'Blog top bar\', \'http://eilime.com\']);">Eilime</a>' +
  481. '<a href=" http://annawarrington.dk" class="topbar-link" onClick="_gaq.push([\'_trackEvent\', \'Top bar\', \'Blog top bar\', \'http://annawarrington.dk\']);">Anna Warrington</a>' +
  482. '<a href=" http://cecilielange.dk" class="topbar-link" onClick="_gaq.push([\'_trackEvent\', \'Top bar\', \'Blog top bar\', \'http://cecilielange.dk\']);">Cecilie Lange</a>' +
  483. '<a href=" http://gohotnhealthy.dk" class="topbar-link" onClick="_gaq.push([\'_trackEvent\', \'Top bar\', \'Blog top bar\', \'http://gohotnhealthy.dk\']);">Go Hot N Healthy</a>' +
  484. '<a href=" http://blog.gittehoej.dk" class="topbar-link" onClick="_gaq.push([\'_trackEvent\', \'Top bar\', \'Blog top bar\', \'http://blog.gittehoej.dk\']);">Gitte Høj</a>' +
  485. ' <a class="dummy" href="http://www.dummy.dk"></a>' +
  486. ' <a class="dummy" href="http://www.dummy.dk"></a>' +
  487. ' <a class="dummy" href="http://www.dummy.dk"></a>' +
  488. ' <a class="dummy" href="http://www.dummy.dk"></a>' +
  489. ' <a class="dummy" href="http://www.dummy.dk"></a>' +
  490. ' </li>' +
  491. ' <li id="group50"> ' +
  492. '<a href=" http://amandalouise.dk" class="topbar-link" onClick="_gaq.push([\'_trackEvent\', \'Top bar\', \'Blog top bar\', \'http://amandalouise.dk\']);">Amanda Louise</a>' +
  493. '<a href=" http://tinegronnemark.dk" class="topbar-link" onClick="_gaq.push([\'_trackEvent\', \'Top bar\', \'Blog top bar\', \'http://tinegronnemark.dk\']);">Tine Grønnemark</a>' +
  494. '<a href=" http://getfitinspiration.dk" class="topbar-link" onClick="_gaq.push([\'_trackEvent\', \'Top bar\', \'Blog top bar\', \'http://getfitinspiration.dk\']);">Get fit inspiration</a>' +
  495. '<a href=" http://blog.altid-slank.dk" class="topbar-link" onClick="_gaq.push([\'_trackEvent\', \'Top bar\', \'Blog top bar\', \'http://blog.altid-slank.dk\']);">Altid Slank</a>' +
  496. '<a href=" http://carolineschack.dk" class="topbar-link" onClick="_gaq.push([\'_trackEvent\', \'Top bar\', \'Blog top bar\', \'http://carolineschack.dk\']);">Caroline Schack</a>' +
  497. '<a href=" http://cathrineyoga.dk" class="topbar-link" onClick="_gaq.push([\'_trackEvent\', \'Top bar\', \'Blog top bar\', \'http://cathrineyoga.dk\']);">Cathrine Yoga</a>' +
  498. ' <a class="dummy" href="http://www.dummy.dk"></a>' +
  499. ' <a class="dummy" href="http://www.dummy.dk"></a>' +
  500. ' <a class="dummy" href="http://www.dummy.dk"></a>' +
  501. ' <a class="dummy" href="http://www.dummy.dk"></a>' +
  502. ' <a class="dummy" href="http://www.dummy.dk"></a>' +
  503. ' </li>' +
  504. ' <li id="group11"> ' +
  505. '<a href=" http://fielaursen.dk" class="topbar-link" onClick="_gaq.push([\'_trackEvent\', \'Top bar\', \'Blog top bar\', \'http://fielaursen.dk\']);">Fie Laursen</a>' +
  506. '<a href=" http://ceciliestenfeldt.dk" class="topbar-link" onClick="_gaq.push([\'_trackEvent\', \'Top bar\', \'Blog top bar\', \'http://ceciliestenfeldt.dk\']);">Cecilie Stenfeldt</a>' +
  507. '<a href=" http://isa-tankestreg.dk" class="topbar-link" onClick="_gaq.push([\'_trackEvent\', \'Top bar\', \'Blog top bar\', \'http://isa-tankestreg.dk\']);">Isa-Tankestreg</a>' +
  508. '<a href=" http://maloueggertsen.dk" class="topbar-link" onClick="_gaq.push([\'_trackEvent\', \'Top bar\', \'Blog top bar\', \'http://maloueggertsen.dk\']);">Malou Eggertsen</a>' +
  509. '<a href=" http://madeindk.dk" class="topbar-link" onClick="_gaq.push([\'_trackEvent\', \'Top bar\', \'Blog top bar\', \'http://madeindk.dk\']);">Made in Denmark</a>' +
  510. ' <a class="dummy" href="http://www.dummy.dk"></a>' +
  511. ' <a class="dummy" href="http://www.dummy.dk"></a>' +
  512. ' <a class="dummy" href="http://www.dummy.dk"></a>' +
  513. ' <a class="dummy" href="http://www.dummy.dk"></a>' +
  514. ' <a class="dummy" href="http://www.dummy.dk"></a>' +
  515. ' <a class="dummy" href="http://www.dummy.dk"></a>' +
  516. ' </li>' +
  517. ' <li id="group12"> ' +
  518. '<a href=" http://charmainelago.com" class="topbar-link" onClick="_gaq.push([\'_trackEvent\', \'Top bar\', \'Blog top bar\', \'http://charmainelago.com\']);">Charmaine Lago</a>' +
  519. '<a href=" http://simonewulff.dk" class="topbar-link" onClick="_gaq.push([\'_trackEvent\', \'Top bar\', \'Blog top bar\', \'http://simonewulff.dk\']);">Simone Wulff</a>' +
  520. '<a href=" http://asofie.dk" class="topbar-link" onClick="_gaq.push([\'_trackEvent\', \'Top bar\', \'Blog top bar\', \'http://asofie.dk\']);">Asofie</a>' +
  521. '<a href=" http://astarasmussen.dk" class="topbar-link" onClick="_gaq.push([\'_trackEvent\', \'Top bar\', \'Blog top bar\', \'http://astarasmussen.dk\']);">Asta Rasmussen</a>' +
  522. '<a href=" http://classysoull.com" class="topbar-link" onClick="_gaq.push([\'_trackEvent\', \'Top bar\', \'Blog top bar\', \'http://classysoull.com\']);">Classy Soul</a>' +
  523. ' <a class="dummy" href="http://www.dummy.dk"></a>' +
  524. ' <a class="dummy" href="http://www.dummy.dk"></a>' +
  525. ' <a class="dummy" href="http://www.dummy.dk"></a>' +
  526. ' <a class="dummy" href="http://www.dummy.dk"></a>' +
  527. ' <a class="dummy" href="http://www.dummy.dk"></a>' +
  528. ' <a class="dummy" href="http://www.dummy.dk"></a>' +
  529. ' </li>' +
  530. ' <li id="group13"> ' +
  531. '<a href=" http://sarahlouise.dk" class="topbar-link" onClick="_gaq.push([\'_trackEvent\', \'Top bar\', \'Blog top bar\', \'http://sarahlouise.dk\']);">Sarah Louise</a>' +
  532. '<a href=" http://szhirleyontheblog.dk" class="topbar-link" onClick="_gaq.push([\'_trackEvent\', \'Top bar\', \'Blog top bar\', \'http://szhirleyontheblog.dk\']);">Szhirley</a>' +
  533. '<a href=" http://maschavang.dk" class="topbar-link" onClick="_gaq.push([\'_trackEvent\', \'Top bar\', \'Blog top bar\', \'http://maschavang.dk\']);">Mascha Vang</a>' +
  534. '<a href=" http://dkira.com" class="topbar-link" onClick="_gaq.push([\'_trackEvent\', \'Top bar\', \'Blog top bar\', \'http://dkira.com\']);">Kira Eggers</a>' +
  535. '<a href=" http://annegadegaard.com" class="topbar-link" onClick="_gaq.push([\'_trackEvent\', \'Top bar\', \'Blog top bar\', \'http://annegadegaard.com\']);">Anne Gadegaard</a>' +
  536. '<a href=" http://tinalund.bloggersdelight.dk" class="topbar-link" onClick="_gaq.push([\'_trackEvent\', \'Top bar\', \'Blog top bar\', \'http://tinalund.bloggersdelight.dk\']);">Tina Lund</a>' +
  537. '<a href=" http://pernilleagerup.dk" class="topbar-link" onClick="_gaq.push([\'_trackEvent\', \'Top bar\', \'Blog top bar\', \'http://pernilleagerup.dk\']);">Pernille Agerup</a>' +
  538. ' <a class="dummy" href="http://www.dummy.dk"></a>' +
  539. ' <a class="dummy" href="http://www.dummy.dk"></a>' +
  540. ' <a class="dummy" href="http://www.dummy.dk"></a>' +
  541. ' <a class="dummy" href="http://www.dummy.dk"></a>' +
  542. ' </li>' +
  543. ' <li id="group46"> ' +
  544. '<a href=" http://ceciliehother.dk" class="topbar-link" onClick="_gaq.push([\'_trackEvent\', \'Top bar\', \'Blog top bar\', \'http://ceciliehother.dk\']);">Cecilie Hother</a>' +
  545. '<a href=" http://claudiarex.dk" class="topbar-link" onClick="_gaq.push([\'_trackEvent\', \'Top bar\', \'Blog top bar\', \'http://claudiarex.dk\']);">Claudia Rex</a>' +
  546. '<a href=" http://timschou.dk" class="topbar-link" onClick="_gaq.push([\'_trackEvent\', \'Top bar\', \'Blog top bar\', \'http://timschou.dk\']);">Tim Schou</a>' +
  547. '<a href=" http://cloudstrikevalley.com" class="topbar-link" onClick="_gaq.push([\'_trackEvent\', \'Top bar\', \'Blog top bar\', \'http://cloudstrikevalley.com\']);">CXV</a>' +
  548. '<a href=" http://mariakassandra.com" class="topbar-link" onClick="_gaq.push([\'_trackEvent\', \'Top bar\', \'Blog top bar\', \'http://mariakassandra.com\']);">Maria Kassandra</a>' +
  549. '<a href=" http://victoriahbech.com" class="topbar-link" onClick="_gaq.push([\'_trackEvent\', \'Top bar\', \'Blog top bar\', \'http://victoriahbech.com\']);">Victoriah Bech</a>' +
  550. ' <a class="dummy" href="http://www.dummy.dk"></a>' +
  551. ' <a class="dummy" href="http://www.dummy.dk"></a>' +
  552. ' <a class="dummy" href="http://www.dummy.dk"></a>' +
  553. ' <a class="dummy" href="http://www.dummy.dk"></a>' +
  554. ' <a class="dummy" href="http://www.dummy.dk"></a>' +
  555. ' </li>' +
  556. ' <li id="group104"> ' +
  557. '<a href=" http://tinderslut.dk" class="topbar-link" onClick="_gaq.push([\'_trackEvent\', \'Top bar\', \'Blog top bar\', \'http://tinderslut.dk\']);">Tinderslut</a>' +
  558. '<a href=" http://livefralolland.dk" class="topbar-link" onClick="_gaq.push([\'_trackEvent\', \'Top bar\', \'Blog top bar\', \'http://livefralolland.dk\']);">Live fra Lolland</a>' +
  559. '<a href=" http://desmaating.dk" class="topbar-link" onClick="_gaq.push([\'_trackEvent\', \'Top bar\', \'Blog top bar\', \'http://desmaating.dk\']);">De Små Ting</a>' +
  560. '<a href=" http://maiserygaard.dk" class="topbar-link" onClick="_gaq.push([\'_trackEvent\', \'Top bar\', \'Blog top bar\', \'http://maiserygaard.dk\']);">Maise Rygaard</a>' +
  561. '<a href=" http://amarorama.dk" class="topbar-link" onClick="_gaq.push([\'_trackEvent\', \'Top bar\', \'Blog top bar\', \'http://amarorama.dk\']);">AmarOrama</a>' +
  562. '<a href=" http://girlsonfilm.dk" class="topbar-link" onClick="_gaq.push([\'_trackEvent\', \'Top bar\', \'Blog top bar\', \'http://girlsonfilm.dk\']);">Girls on film</a>' +
  563. '<a href=" http://voksenlivsstil.dk" class="topbar-link" onClick="_gaq.push([\'_trackEvent\', \'Top bar\', \'Blog top bar\', \'http://voksenlivsstil.dk\']);">Voksen Livsstil</a>' +
  564. '<a href=" http://katrinemayhansen.dk" class="topbar-link" onClick="_gaq.push([\'_trackEvent\', \'Top bar\', \'Blog top bar\', \'http://katrinemayhansen.dk\']);">Katrine May Hansen</a>' +
  565. ' <a class="dummy" href="http://www.dummy.dk"></a>' +
  566. ' <a class="dummy" href="http://www.dummy.dk"></a>' +
  567. ' <a class="dummy" href="http://www.dummy.dk"></a>' +
  568. ' </li>' +
  569. ' <li id="group14"> ' +
  570. '<a href=" http://geggosverden.dk" class="topbar-link" onClick="_gaq.push([\'_trackEvent\', \'Top bar\', \'Blog top bar\', \'http://geggosverden.dk\']);">Geggo</a>' +
  571. '<a href=" http://amalieszigethy.com" class="topbar-link" onClick="_gaq.push([\'_trackEvent\', \'Top bar\', \'Blog top bar\', \'http://amalieszigethy.com\']);">Amalie Szigethy</a>' +
  572. '<a href=" http://sandyesko.dk" class="topbar-link" onClick="_gaq.push([\'_trackEvent\', \'Top bar\', \'Blog top bar\', \'http://sandyesko.dk\']);">Sandy Esko</a>' +
  573. '<a href=" http://kassandragoldofficial.com" class="topbar-link" onClick="_gaq.push([\'_trackEvent\', \'Top bar\', \'Blog top bar\', \'http://kassandragoldofficial.com\']);">Kassandra Gold</a>' +
  574. '<a href=" http://amandasisse.dk" class="topbar-link" onClick="_gaq.push([\'_trackEvent\', \'Top bar\', \'Blog top bar\', \'http://amandasisse.dk\']);">Amanda Sisse</a>' +
  575. '<a href=" http://sylee.dk" class="topbar-link" onClick="_gaq.push([\'_trackEvent\', \'Top bar\', \'Blog top bar\', \'http://sylee.dk\']);">Sy Lee</a>' +
  576. ' <a class="dummy" href="http://www.dummy.dk"></a>' +
  577. ' <a class="dummy" href="http://www.dummy.dk"></a>' +
  578. ' <a class="dummy" href="http://www.dummy.dk"></a>' +
  579. ' <a class="dummy" href="http://www.dummy.dk"></a>' +
  580. ' <a class="dummy" href="http://www.dummy.dk"></a>' +
  581. ' </li>' +
  582. ' <li id="group107"> ' +
  583. '<a href=" http://amaliekronil.dk" class="topbar-link" onClick="_gaq.push([\'_trackEvent\', \'Top bar\', \'Blog top bar\', \'http://amaliekronil.dk\']);">Amalie</a>' +
  584. '<a href=" http://christel.bloggersdelight.dk" class="topbar-link" onClick="_gaq.push([\'_trackEvent\', \'Top bar\', \'Blog top bar\', \'http://christel.bloggersdelight.dk\']);">Christel</a>' +
  585. '<a href=" http://bynannac.dk" class="topbar-link" onClick="_gaq.push([\'_trackEvent\', \'Top bar\', \'Blog top bar\', \'http://bynannac.dk\']);">Nanna</a>' +
  586. '<a href=" http://nikkerbabe.dk" class="topbar-link" onClick="_gaq.push([\'_trackEvent\', \'Top bar\', \'Blog top bar\', \'http://nikkerbabe.dk\']);">Monique</a>' +
  587. '<a href=" http://sashawulff.bloggersdelight.dk" class="topbar-link" onClick="_gaq.push([\'_trackEvent\', \'Top bar\', \'Blog top bar\', \'http://sashawulff.bloggersdelight.dk\']);">Sasha</a>' +
  588. '<a href=" http://team1990.dk" class="topbar-link" onClick="_gaq.push([\'_trackEvent\', \'Top bar\', \'Blog top bar\', \'http://team1990.dk\']);">Patrick & Kasper</a>' +
  589. '<a href=" http://philipmay.dk" class="topbar-link" onClick="_gaq.push([\'_trackEvent\', \'Top bar\', \'Blog top bar\', \'http://philipmay.dk\']);">Philip</a>' +
  590. '<a href=" http://frederikkeshorry.dk" class="topbar-link" onClick="_gaq.push([\'_trackEvent\', \'Top bar\', \'Blog top bar\', \'http://frederikkeshorry.dk\']);">Frederikke</a>' +
  591. '<a href=" http://theisbergk.bloggersdelight.dk" class="topbar-link" onClick="_gaq.push([\'_trackEvent\', \'Top bar\', \'Blog top bar\', \'http://theisbergk.bloggersdelight.dk\']);">Theis</a>' +
  592. '<a href=" http://bellaisa.dk" class="topbar-link" onClick="_gaq.push([\'_trackEvent\', \'Top bar\', \'Blog top bar\', \'http://bellaisa.dk\']);">Isabella</a>' +
  593. '<a href=" http://andersmeyer.dk" class="topbar-link" onClick="_gaq.push([\'_trackEvent\', \'Top bar\', \'Blog top bar\', \'http://andersmeyer.dk\']);">Anders</a>' +
  594. '<a href=" http://sammiidrissi.dk" class="topbar-link" onClick="_gaq.push([\'_trackEvent\', \'Top bar\', \'Blog top bar\', \'http://sammiidrissi.dk\']);">Sammi</a>' +
  595. ' </li>' +
  596. ' <li id="group113"> ' +
  597. '<a href=" http://verdensomlegeplads.dk" class="topbar-link" onClick="_gaq.push([\'_trackEvent\', \'Top bar\', \'Blog top bar\', \'http://verdensomlegeplads.dk\']);">Verden som legeplads</a>' +
  598. '<a href=" http://rejseblokken.dk" class="topbar-link" onClick="_gaq.push([\'_trackEvent\', \'Top bar\', \'Blog top bar\', \'http://rejseblokken.dk\']);">Rejseblokken</a>' +
  599.  
  600. ' </li>' +
  601.  
  602.  
  603. '</ul>'
  604. );
  605.  
  606. carou=$('#topmenu').carousel({pagination: false});
  607. setTimeout("carou.data('carousel').select_link()", 500);
  608.  
  609.  
  610.  
  611. });
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement