Contact

DotNetNuke Tips for Skinning, CSS, and Design

Ralph Williams Blog

Turn DNN Announcements Module into a jQuery Slider

Jun 3

Written by:
Thursday, June 03, 2010 10:34 PM  RssIcon

DotNetNuke has come a long way recently with making things much more w3 compliant. This has allowed for more than just cleaner code; it has also allowed for much more control of your website through jQuery and CSS. Also, according to the forums, it looks like things are getting even better for compliance and control.

One of my favorite updates of DNN modules to this new compliance, is the DNN Announcements module. With the latest release, we now have the ability to set up the announcements as a list and apply some cool jQuery to it. When I started looking into what I wanted my slider to be, I decided that I wanted to have my main image fade in and out and the title and description to slide in from the bottom. I came across the s3Slider jQuery plugin which seemed to provide exactly what I was looking for.

I have outlined the steps below on how to add it to your site. I did not go into much detail on how things are set up. For more detail on the slider, check out the s3Slider link above.

Demo

The HTML

  1. Add the Announcements module to your page.
  2. Click the "Settings" link.
  3. Expand the "Announcements Settings"
  4. Remove exisiting code from Header Template, Item Template, and Footer Template.
  5. In the "Header Template:" text area, enter the following code:
    <div id="s3slider">
      <ul id="s3sliderContent">
  6. In the "Item Template:" text area, enter the following code:
    If you want your description area to be at the top of the image area, use the class top in the span.
    If you want your description area to be at the bottom of the image area, use the class bottom in the span as I have here.
          <li class="s3sliderImage">
              [IMAGESOURCE]<span class="bottom"><strong>[TITLE][EDIT]</strong><br />
              [DESCRIPTION]<br />
              [READMORE]</span>
          </li>
  7. In the "Footer Template:" text area, enter the following code:
            <li class="clear s3sliderImage"></li>
  8. Also, in the "Footer Template" area close out the ul and div that was started in the "Header Template" area. (I couldn't put the code in, for some reason it kept breaking the layout and losing the code.)

The CSS

In your skin.css file, insert the following styles: (note the widths and heights in the CSS. They need to be exactly the same as the image for the announcemnts.)

#s3slider { width: 500px; height: 242px; position: relative; overflow: hidden;}
#s3sliderContent { width: 500px; position: absolute; top: 0; margin-left: 0;}
.s3sliderImage { float: left; position: relative; display: none;}
.s3sliderImage span { position: absolute; font: 14px/21px Arial, Helvetica, sans-serif; padding: 10px 13px;  width: 500px; background-color: #000; filter: alpha(opacity=70); -moz-opacity: 0.7; -khtml-opacity: 0.7; opacity: 0.7; color: #fff; display: none;}
.top { top: 0; left: 0;}
.bottom { bottom: 0; left: 0;}

The jQuery

Now that we have all of that in place, we can add the jQuery to make it work.

  1. Include a refrence to jQuery in your skin. This is already done if widgets are inabled on your site.
  2. Download the files from the s3Slider site. http://www.serie3.info/s3slider (link opens in new window)
  3. Upload the s3Slider.js file to your skin folder.
  4. In your skin file (for example: skin.ascx), enter the following code: (you can put this at the top or the bottom of your skin)
    <script type="text/javascript" src="<%= SkinPath%>s3Slider.js"></script>
    <script type="text/javascript">
        $(document).ready(function() { 
           $('#s3slider').s3Slider({ 
              timeOut: 7000 
           });
        });
    </script>

The Content

Now just start adding your announcements! Be sure to make your images the same size as what is set in the CSS.

Please feel free to leave questions or comments.

Updated December 15, 2010: Added instructions to remove existing HTML in template, clarification on closing ul and divs in Footer Template and instruction to reference jQuery.

118 comment(s) so far...


Gravatar

Re: Turn DNN Announcements Module into a jQuery Slider

Ralph,

This is a great example of how easy it is to use and add jquery to a DNN site, and for how creative we can be with the modules.

Thanks for sharing with us :)

Rick.

By Rick Beddie on   Friday, June 04, 2010 11:39 AM
Gravatar

Re: Turn DNN Announcements Module into a jQuery Slider

Nice job Ralph. Always pushing the DNN envelope. Thanks for the post.

By Kurt Amstutz on   Friday, June 04, 2010 1:14 PM
Gravatar

Re: Turn DNN Announcements Module into a jQuery Slider

Great example Ralph. I'm doing something very similar with a jQuery content rotation script in my Aggregator module. I might have to create a new skin using the s3Slider. I hadn't seen that one before.

By Richard Edwards on   Friday, June 04, 2010 2:15 PM
Gravatar

Re: Turn DNN Announcements Module into a jQuery Slider

Nice - I integrated the CodeSlider into the HTML module on the PokerDIY.com homepage... check it out ;)

By Rodney Joyce on   Sunday, June 06, 2010 3:37 PM
Gravatar

Re: Turn DNN Announcements Module into a jQuery Slider

Excellent tips. Thanks for sharing with us :)

Inspired by this post, I also published a similiar tutorial about how to create a jQuery Carousel - [http://www.sunblognuke.com/Blog/entryid/236/Turn-Content-Slider-Widget-into-a-jQuery-Carousel.aspx]. Please check it out :)

By Baldwin Sun on   Wednesday, June 09, 2010 7:07 PM
Gravatar

Re: Turn DNN Announcements Module into a jQuery Slider

This slider looks really slick, I have been trying to integrate it into my internal site. I have followed the instruction but all I get is a blank announcements module, even after adding some announcements. When you are editing the header template sections do you remove the existing formatting and replace it with code you wrote or is it appended to the default template? Also you mention that on the footer template section to add in a close unordered list and the div, is this needed as it is closed in the header?

Any help would be greatly appreciated.

By Videsh Lingabavan on   Wednesday, December 15, 2010 7:15 AM
Gravatar

Re: Turn DNN Announcements Module into a jQuery Slider

@ Videsh:
I added some clarification to your questions in the blog. You do replace the existing formatting and replace it with the new code. Also, the closing of the ul and div are needed in the Footer as it should be closing what is in the Header. It should not be closed in the Header itself. And, make sure you either have widgets enabled on your site or are referencing jQuery somewhere.

Let me know if you have any other questions.

By Ralph Williams on   Wednesday, December 15, 2010 9:26 AM
Gravatar

Re: Turn DNN Announcements Module into a jQuery Slider

This slider looks really slick, I have been trying to integrate it into my internal site. I have followed the instruction but all I get is a blank announcements module, even after adding some announcements. When you are editing the header template sections do you remove the existing formatting and replace it with code you wrote or is it appended to the default template? Also you mention that on the footer template section to add in a close unordered list and the div, is this needed as it is closed in the header?

Any help would be greatly appreciated.

By Videsh Lingabavan on   Wednesday, December 15, 2010 11:37 AM
Gravatar

Re: Turn DNN Announcements Module into a jQuery Slider

Brilliant post Ralph, it was really nice and easy to follow your instructions. Many thanks for sharing and well done!

By Kar on   Monday, February 28, 2011 10:47 AM
Gravatar

Re: Turn DNN Announcements Module into a jQuery Slider

images are displaying by using this... please suggest what to do

By Vijay Kumar Pasupulatie on   Monday, September 12, 2011 4:43 AM
Gravatar

Re: Turn DNN Announcements Module into a jQuery Slider

sorry for previous comment.. Images are not displaying ... what i have to do for that

By Vijay Kumar Pasupulatie on   Monday, September 12, 2011 4:45 AM
Gravatar

Re: Turn DNN Announcements Module into a jQuery Slider

I am trying to follow this in DNN 5, but after I install the Announcements Module, I see Admin Settings and Host Settings. I went into the Settings.ascx but I don't see any Header, Item or Footer template. Sorry for being so silly. I'd appreciate any advice.

By Christine on   Tuesday, September 13, 2011 8:53 PM
Gravatar

Re: Turn DNN Announcements Module into a jQuery Slider

@Vijay Can you provide more information about your issue?

@Christine Once adding the module to the page, you should be able to access the module settings by clicking the settings link in the dropdown actions menu (the little blue arrow) for the module. Inside there should be a section labeled Advanced Settings. Expanding that should reveal the Template options.

By Ralph Williams on   Tuesday, September 13, 2011 9:03 PM
Gravatar

Re: Turn DNN Announcements Module into a jQuery Slider

Nevermind! I figured it out! Sorry to be a bother! Thanks for a great tutorial :)

By Christine on   Tuesday, September 13, 2011 9:13 PM
Gravatar

Re: Turn DNN Announcements Module into a jQuery Slider

Hello Ralph,

these are trully great posts on using Jquery with standard DNN modules. if i follow your example everything works just fine. But what if i want to keep the original functionality of the DNN anouncement module and also have it changed as you propose into a jquery slider? can i have two seperate installments?

thanks

By nikos on   Saturday, December 10, 2011 6:53 AM
Gravatar

Nicely Done

but if you see on my home page there is a huge list of announcements.i want them to be like archive or something so that they don't make the home page so lengthy with a huge scroll bar on the home page ..
how do i do that ?
the above one can be used with images (if they are used)
thank

p.s: no option to get notified on a follow up comment ?

By Dr-Hack on   Tuesday, April 24, 2012 11:46 AM
Gravatar

Not working properly

Hi there Ralph

Hopefully you still check this thread, anyways I have implemented your slider, which is brilliant by the way!

It was working perfectly fine before, however once I started adding more announcements it now seems to miss out 1 announcement. For example, I have 2 announcements, however the slider will not show the 1st one, only the second, you can see this on my homepage.

I can see the html for both announcements on the page, but cannot work out why the slider will not move to the next item.

Thanks

By Nanz on   Sunday, August 05, 2012 5:53 AM
Gravatar

Re: Not working properly

Hi Nanz,

I am glad to hear you are enjoying the slider! I was just working on a demo for this and was able to find the solution as I was having the same issue. Make sure to include the last clearing div and make sure it also has the class of "s3sliderImage". See step 7 in the HTML section in the post above.

Hope that helps. Let me know if you have any other questions.

By Ralph Williams on   Tuesday, August 07, 2012 11:34 AM

cocotte saveur

DotNetNuke Tips for Skinning, CSS, and Design - Turn DNN Announcements Module into a jQuery Slider
# cocotte saveur

By TrackBack on   Tuesday, September 25, 2012 1:00 AM

servicii seo

DotNetNuke Tips for Skinning, CSS, and Design - Turn DNN Announcements Module into a jQuery Slider
# servicii seo

By TrackBack on   Monday, February 25, 2013 2:31 PM

seo optimizare site

DotNetNuke Tips for Skinning, CSS, and Design - Turn DNN Announcements Module into a jQuery Slider
# seo optimizare site

By TrackBack on   Wednesday, February 27, 2013 4:46 PM

oferta seo

DotNetNuke Tips for Skinning, CSS, and Design - Turn DNN Announcements Module into a jQuery Slider
# oferta seo

By TrackBack on   Thursday, February 28, 2013 5:43 PM

optimizari seo

DotNetNuke Tips for Skinning, CSS, and Design - Turn DNN Announcements Module into a jQuery Slider
# optimizari seo

By TrackBack on   Thursday, February 28, 2013 5:54 PM

seo romania

DotNetNuke Tips for Skinning, CSS, and Design - Turn DNN Announcements Module into a jQuery Slider
# seo romania

By TrackBack on   Thursday, February 28, 2013 5:56 PM

visit this backlink

DotNetNuke Tips for Skinning, CSS, and Design - Turn DNN Announcements Module into a jQuery Slider
# visit this backlink

By TrackBack on   Saturday, March 09, 2013 5:34 AM

http://www.mzajbook.com/index.php?do=/blog/125691/how-to-find-little-ones-clothing-on-the-low-cost/

DotNetNuke Tips for Skinning, CSS, and Design - Turn DNN Announcements Module into a jQuery Slider
# http://www.mzajbook.com/index.php?do=/blog/125691/how-to-find-little-ones-clothing-on-the-low-cost/

By TrackBack on   Monday, March 11, 2013 3:57 PM

http://www.social.neon-hosting.nl/index.php?do=/profile-21139/info

DotNetNuke Tips for Skinning, CSS, and Design - Turn DNN Announcements Module into a jQuery Slider
# http://www.social.neon-hosting.nl/index.php?do=/profile-21139/info

By TrackBack on   Tuesday, March 12, 2013 5:17 PM

Look At This

DotNetNuke Tips for Skinning, CSS, and Design - Turn DNN Announcements Module into a jQuery Slider
# Look At This

By TrackBack on   Tuesday, March 12, 2013 10:35 PM

Discover More

DotNetNuke Tips for Skinning, CSS, and Design - Turn DNN Announcements Module into a jQuery Slider
# Discover More

By TrackBack on   Thursday, March 14, 2013 10:06 PM

This Web site

DotNetNuke Tips for Skinning, CSS, and Design - Turn DNN Announcements Module into a jQuery Slider
# This Web site

By TrackBack on   Friday, March 15, 2013 1:08 AM

click through the next webpage

DotNetNuke Tips for Skinning, CSS, and Design - Turn DNN Announcements Module into a jQuery Slider
# click through the next webpage

By TrackBack on   Friday, March 15, 2013 3:39 AM

http://candyzhaoyang.com

DotNetNuke Tips for Skinning, CSS, and Design - Turn DNN Announcements Module into a jQuery Slider
# http://candyzhaoyang.com

By TrackBack on   Friday, March 15, 2013 7:02 PM

http://Family.1100service.com/blogs/user/MarjorieBu

DotNetNuke Tips for Skinning, CSS, and Design - Turn DNN Announcements Module into a jQuery Slider
# http://Family.1100service.com/blogs/user/MarjorieBu

By TrackBack on   Friday, March 15, 2013 8:16 PM

Twitter.Com

DotNetNuke Tips for Skinning, CSS, and Design - Turn DNN Announcements Module into a jQuery Slider
# Twitter.Com

By TrackBack on   Friday, March 15, 2013 8:31 PM

winning florida lottery numbers

DotNetNuke Tips for Skinning, CSS, and Design - Turn DNN Announcements Module into a jQuery Slider
# winning florida lottery numbers

By TrackBack on   Friday, March 15, 2013 8:32 PM

www.scribd.com/LotteryAudit

DotNetNuke Tips for Skinning, CSS, and Design - Turn DNN Announcements Module into a jQuery Slider
# www.scribd.com/LotteryAudit

By TrackBack on   Saturday, March 16, 2013 1:41 AM

mega million lottery winning numbers

DotNetNuke Tips for Skinning, CSS, and Design - Turn DNN Announcements Module into a jQuery Slider
# mega million lottery winning numbers

By TrackBack on   Saturday, March 16, 2013 3:57 AM

Recommended Website

DotNetNuke Tips for Skinning, CSS, and Design - Turn DNN Announcements Module into a jQuery Slider
# Recommended Website

By TrackBack on   Saturday, March 16, 2013 4:27 AM

Www.Goldknighttech.com

DotNetNuke Tips for Skinning, CSS, and Design - Turn DNN Announcements Module into a jQuery Slider
# Www.Goldknighttech.com

By TrackBack on   Saturday, March 16, 2013 5:50 AM

http://www.sahby.com/groups/profile/473727/winning-texas-lottery-numbers

DotNetNuke Tips for Skinning, CSS, and Design - Turn DNN Announcements Module into a jQuery Slider
# http://www.sahby.com/groups/profile/473727/winning-texas-lottery-numbers

By TrackBack on   Sunday, March 17, 2013 7:42 AM

http://www.iyydo.com/

DotNetNuke Tips for Skinning, CSS, and Design - Turn DNN Announcements Module into a jQuery Slider
# http://www.iyydo.com/

By TrackBack on   Sunday, March 17, 2013 8:28 AM

http://my-mtv.com/

DotNetNuke Tips for Skinning, CSS, and Design - Turn DNN Announcements Module into a jQuery Slider
# http://my-mtv.com/

By TrackBack on   Sunday, March 17, 2013 11:11 PM

Read Far more

DotNetNuke Tips for Skinning, CSS, and Design - Turn DNN Announcements Module into a jQuery Slider
# Read Far more

By TrackBack on   Monday, March 18, 2013 1:42 AM

Read More At this website

DotNetNuke Tips for Skinning, CSS, and Design - Turn DNN Announcements Module into a jQuery Slider
# Read More At this website

By TrackBack on   Monday, March 18, 2013 1:46 AM

http://lotteryaudit.livejournal.com/1154.html

DotNetNuke Tips for Skinning, CSS, and Design - Turn DNN Announcements Module into a jQuery Slider
# http://lotteryaudit.livejournal.com/1154.html

By TrackBack on   Monday, March 18, 2013 2:48 AM

www.amazines.com/view_author.cfm?authorid=551963

DotNetNuke Tips for Skinning, CSS, and Design - Turn DNN Announcements Module into a jQuery Slider
# www.amazines.com/view_author.cfm?authorid=551963

By TrackBack on   Monday, March 18, 2013 3:04 AM

Full Guide

DotNetNuke Tips for Skinning, CSS, and Design - Turn DNN Announcements Module into a jQuery Slider
# Full Guide

By TrackBack on   Monday, March 18, 2013 10:25 AM

palbatey.com

DotNetNuke Tips for Skinning, CSS, and Design - Turn DNN Announcements Module into a jQuery Slider
# palbatey.com

By TrackBack on   Monday, March 18, 2013 10:42 AM

Loosegame.Com

DotNetNuke Tips for Skinning, CSS, and Design - Turn DNN Announcements Module into a jQuery Slider
# Loosegame.Com

By TrackBack on   Monday, March 18, 2013 5:02 PM

visit the next web site

DotNetNuke Tips for Skinning, CSS, and Design - Turn DNN Announcements Module into a jQuery Slider
# visit the next web site

By TrackBack on   Monday, March 18, 2013 5:12 PM

www.igamershood.com

DotNetNuke Tips for Skinning, CSS, and Design - Turn DNN Announcements Module into a jQuery Slider
# www.igamershood.com

By TrackBack on   Tuesday, March 19, 2013 3:02 AM

fitness.org.Ua/index.php?do=/blog/19749/apartamente-de-vanzare-bacau-actualizate-in-ultimele-3-luni-da-click-sa-Vez/

DotNetNuke Tips for Skinning, CSS, and Design - Turn DNN Announcements Module into a jQuery Slider
# fitness.org.Ua/index.php?do=/blog/19749/apartamente-de-vanzare-bacau-actualizate-in-ultimele-3-luni-da-click-sa-Vez/

By TrackBack on   Tuesday, March 19, 2013 3:17 AM

Http://Apartamentedevanzareinbacau.Com/Contact/

DotNetNuke Tips for Skinning, CSS, and Design - Turn DNN Announcements Module into a jQuery Slider
# Http://Apartamentedevanzareinbacau.Com/Contact/

By TrackBack on   Tuesday, March 19, 2013 12:18 PM

aulamagnamagna.it

DotNetNuke Tips for Skinning, CSS, and Design - Turn DNN Announcements Module into a jQuery Slider
# aulamagnamagna.it

By TrackBack on   Wednesday, March 20, 2013 12:56 PM

http://pinterest.com/hainuteminunate/haine-de-copii-hanorace/

DotNetNuke Tips for Skinning, CSS, and Design - Turn DNN Announcements Module into a jQuery Slider
# http://pinterest.com/hainuteminunate/haine-de-copii-hanorace/

By TrackBack on   Wednesday, March 20, 2013 2:09 PM

mouse click the following post

DotNetNuke Tips for Skinning, CSS, and Design - Turn DNN Announcements Module into a jQuery Slider
# mouse click the following post

By TrackBack on   Wednesday, March 20, 2013 5:05 PM

aspirateur pas cher

nice homepage
# aspirateur pas cher

By TrackBack on   Wednesday, March 20, 2013 6:38 PM

please click the following webpage

DotNetNuke Tips for Skinning, CSS, and Design - Turn DNN Announcements Module into a jQuery Slider
# please click the following webpage

By TrackBack on   Thursday, March 21, 2013 8:17 AM

grow lamp

DotNetNuke Tips for Skinning, CSS, and Design - Turn DNN Announcements Module into a jQuery Slider
# grow lamp

By TrackBack on   Thursday, March 21, 2013 9:11 AM

grow room

DotNetNuke Tips for Skinning, CSS, and Design - Turn DNN Announcements Module into a jQuery Slider
# grow room

By TrackBack on   Thursday, March 21, 2013 11:40 AM

wiki.starcoders.de

DotNetNuke Tips for Skinning, CSS, and Design - Turn DNN Announcements Module into a jQuery Slider
# wiki.starcoders.de

By TrackBack on   Thursday, March 21, 2013 8:34 PM

just click the next post

DotNetNuke Tips for Skinning, CSS, and Design - Turn DNN Announcements Module into a jQuery Slider
# just click the next post

By TrackBack on   Thursday, March 21, 2013 9:01 PM

Click On this website

DotNetNuke Tips for Skinning, CSS, and Design - Turn DNN Announcements Module into a jQuery Slider
# Click On this website

By TrackBack on   Friday, March 22, 2013 6:09 AM

backyard liberty review

DotNetNuke Tips for Skinning, CSS, and Design - Turn DNN Announcements Module into a jQuery Slider
# backyard liberty review

By TrackBack on   Friday, March 22, 2013 11:14 AM

plant lighting

DotNetNuke Tips for Skinning, CSS, and Design - Turn DNN Announcements Module into a jQuery Slider
# plant lighting

By TrackBack on   Friday, March 22, 2013 2:09 PM

http://museum.pica.nl/index.php/Hydro_lights

DotNetNuke Tips for Skinning, CSS, and Design - Turn DNN Announcements Module into a jQuery Slider
# http://museum.pica.nl/index.php/Hydro_lights

By TrackBack on   Saturday, March 23, 2013 3:02 AM

visit the following website page

DotNetNuke Tips for Skinning, CSS, and Design - Turn DNN Announcements Module into a jQuery Slider
# visit the following website page

By TrackBack on   Saturday, March 23, 2013 3:07 AM

elearn.mi-emsis.org

DotNetNuke Tips for Skinning, CSS, and Design - Turn DNN Announcements Module into a jQuery Slider
# elearn.mi-emsis.org

By TrackBack on   Saturday, March 23, 2013 3:33 AM

coupon petco click through the following website

DotNetNuke Tips for Skinning, CSS, and Design - Turn DNN Announcements Module into a jQuery Slider
# coupon petco click through the following website

By TrackBack on   Saturday, March 23, 2013 4:18 AM

Discover More Here

DotNetNuke Tips for Skinning, CSS, and Design - Turn DNN Announcements Module into a jQuery Slider
# Discover More Here

By TrackBack on   Saturday, March 23, 2013 7:25 PM

http://into.mat.univie.ac.at/wiki/index.php/Salmon_fish_farming

DotNetNuke Tips for Skinning, CSS, and Design - Turn DNN Announcements Module into a jQuery Slider
# http://into.mat.univie.ac.at/wiki/index.php/Salmon_fish_farming

By TrackBack on   Saturday, March 23, 2013 7:38 PM

http://wikidocentes.guggenheim-bilbao.es/index.php/recirculating_Aquaculture_system

DotNetNuke Tips for Skinning, CSS, and Design - Turn DNN Announcements Module into a jQuery Slider
# http://wikidocentes.guggenheim-bilbao.es/index.php/recirculating_Aquaculture_system

By TrackBack on   Saturday, March 23, 2013 9:33 PM

similar internet site

DotNetNuke Tips for Skinning, CSS, and Design - Turn DNN Announcements Module into a jQuery Slider
# similar internet site

By TrackBack on   Sunday, March 24, 2013 12:59 AM

Click At this website

DotNetNuke Tips for Skinning, CSS, and Design - Turn DNN Announcements Module into a jQuery Slider
# Click At this website

By TrackBack on   Monday, March 25, 2013 3:34 PM

didaktik.mathematik.uni-wuerzburg.de

DotNetNuke Tips for Skinning, CSS, and Design - Turn DNN Announcements Module into a jQuery Slider
# didaktik.mathematik.uni-wuerzburg.de

By TrackBack on   Tuesday, March 26, 2013 8:06 AM

shbab.twhed.com

DotNetNuke Tips for Skinning, CSS, and Design - Turn DNN Announcements Module into a jQuery Slider
# shbab.twhed.com

By TrackBack on   Wednesday, March 27, 2013 8:54 PM

ted's woodworking plan

visit this site
# ted's woodworking plan

By TrackBack on   Wednesday, March 27, 2013 10:10 PM

Highly recommended Web-site

DotNetNuke Tips for Skinning, CSS, and Design - Turn DNN Announcements Module into a jQuery Slider
# Highly recommended Web-site

By TrackBack on   Thursday, March 28, 2013 2:37 AM

http://kagirohi.net

DotNetNuke Tips for Skinning, CSS, and Design - Turn DNN Announcements Module into a jQuery Slider
# http://kagirohi.net

By TrackBack on   Thursday, March 28, 2013 3:01 AM

http://summervilleconnect.com/SummervilleConnect/link/15653

DotNetNuke Tips for Skinning, CSS, and Design - Turn DNN Announcements Module into a jQuery Slider
# http://summervilleconnect.com/SummervilleConnect/link/15653

By TrackBack on   Thursday, March 28, 2013 3:42 PM

just click the next web site

DotNetNuke Tips for Skinning, CSS, and Design - Turn DNN Announcements Module into a jQuery Slider
# just click the next web site

By TrackBack on   Friday, March 29, 2013 9:27 AM

http://wiki.ossural.ru

DotNetNuke Tips for Skinning, CSS, and Design - Turn DNN Announcements Module into a jQuery Slider
# http://wiki.ossural.ru

By TrackBack on   Friday, March 29, 2013 9:53 AM

just click the up coming page

DotNetNuke Tips for Skinning, CSS, and Design - Turn DNN Announcements Module into a jQuery Slider
# just click the up coming page

By TrackBack on   Saturday, March 30, 2013 12:30 AM

fish farming in pakistan

DotNetNuke Tips for Skinning, CSS, and Design - Turn DNN Announcements Module into a jQuery Slider
# fish farming in pakistan

By TrackBack on   Saturday, March 30, 2013 6:11 AM

backyard Liberty Scam

DotNetNuke Tips for Skinning, CSS, and Design - Turn DNN Announcements Module into a jQuery Slider
# backyard Liberty Scam

By TrackBack on   Saturday, March 30, 2013 11:37 AM

http://oppa-ps.fs.cvut.cz

DotNetNuke Tips for Skinning, CSS, and Design - Turn DNN Announcements Module into a jQuery Slider
# http://oppa-ps.fs.cvut.cz

By TrackBack on   Saturday, March 30, 2013 2:53 PM

simply click the next document

DotNetNuke Tips for Skinning, CSS, and Design - Turn DNN Announcements Module into a jQuery Slider
# simply click the next document

By TrackBack on   Sunday, March 31, 2013 5:26 AM

similar resource site

DotNetNuke Tips for Skinning, CSS, and Design - Turn DNN Announcements Module into a jQuery Slider
# similar resource site

By TrackBack on   Sunday, March 31, 2013 2:02 PM

Mouse Click the up coming Article

DotNetNuke Tips for Skinning, CSS, and Design - Turn DNN Announcements Module into a jQuery Slider
# Mouse Click the up coming Article

By TrackBack on   Monday, April 01, 2013 7:01 AM

fish farms uk

DotNetNuke Tips for Skinning, CSS, and Design - Turn DNN Announcements Module into a jQuery Slider
# fish farms uk

By TrackBack on   Monday, April 01, 2013 10:23 AM

backyard liberty

DotNetNuke Tips for Skinning, CSS, and Design - Turn DNN Announcements Module into a jQuery Slider
# backyard liberty

By TrackBack on   Tuesday, April 02, 2013 3:39 AM

couleurmaedels.com

DotNetNuke Tips for Skinning, CSS, and Design - Turn DNN Announcements Module into a jQuery Slider
# couleurmaedels.com

By TrackBack on   Tuesday, April 02, 2013 4:05 PM

Pluft.google-scraps.us

DotNetNuke Tips for Skinning, CSS, and Design - Turn DNN Announcements Module into a jQuery Slider
# Pluft.google-scraps.us

By TrackBack on   Tuesday, April 02, 2013 6:28 PM

http://obeythemassa.org/groups/grow-led-lights-389557378

DotNetNuke Tips for Skinning, CSS, and Design - Turn DNN Announcements Module into a jQuery Slider
# http://obeythemassa.org/groups/grow-led-lights-389557378

By TrackBack on   Tuesday, April 02, 2013 8:48 PM

visit this backlink

DotNetNuke Tips for Skinning, CSS, and Design - Turn DNN Announcements Module into a jQuery Slider
# visit this backlink

By TrackBack on   Wednesday, April 03, 2013 4:25 AM

isppeiosos2012.org

DotNetNuke Tips for Skinning, CSS, and Design - Turn DNN Announcements Module into a jQuery Slider
# isppeiosos2012.org

By TrackBack on   Wednesday, April 03, 2013 8:45 AM

http://abacaba.ru/

DotNetNuke Tips for Skinning, CSS, and Design - Turn DNN Announcements Module into a jQuery Slider
# http://abacaba.ru/

By TrackBack on   Wednesday, April 03, 2013 7:14 PM

http://multihop.tv/

DotNetNuke Tips for Skinning, CSS, and Design - Turn DNN Announcements Module into a jQuery Slider
# http://multihop.tv/

By TrackBack on   Wednesday, April 03, 2013 7:31 PM

http://www.Smassy.com/index.php?title=cheap_hydroponic_systems

DotNetNuke Tips for Skinning, CSS, and Design - Turn DNN Announcements Module into a jQuery Slider
# http://www.Smassy.com/index.php?title=cheap_hydroponic_systems

By TrackBack on   Wednesday, April 03, 2013 7:33 PM

click the following article

DotNetNuke Tips for Skinning, CSS, and Design - Turn DNN Announcements Module into a jQuery Slider
# click the following article

By TrackBack on   Wednesday, April 03, 2013 8:59 PM

the tao of badass

cool site
# the tao of badass

By TrackBack on   Thursday, April 04, 2013 12:04 AM

http://www.mascogemsltd.com/events/link/63487

DotNetNuke Tips for Skinning, CSS, and Design - Turn DNN Announcements Module into a jQuery Slider
# http://www.mascogemsltd.com/events/link/63487

By TrackBack on   Thursday, April 04, 2013 12:53 PM

buildmeup.co

DotNetNuke Tips for Skinning, CSS, and Design - Turn DNN Announcements Module into a jQuery Slider
# buildmeup.co

By TrackBack on   Thursday, April 04, 2013 5:08 PM

backyard liberty review

DotNetNuke Tips for Skinning, CSS, and Design - Turn DNN Announcements Module into a jQuery Slider
# backyard liberty review

By TrackBack on   Thursday, April 04, 2013 8:32 PM

backyard liberty

DotNetNuke Tips for Skinning, CSS, and Design - Turn DNN Announcements Module into a jQuery Slider
# backyard liberty

By TrackBack on   Thursday, April 04, 2013 9:16 PM

backyard liberty

DotNetNuke Tips for Skinning, CSS, and Design - Turn DNN Announcements Module into a jQuery Slider
# backyard liberty

By TrackBack on   Friday, April 05, 2013 1:19 AM

http://sekpedia.sek.net/sekpedia/index.php/Aquaponics_training

DotNetNuke Tips for Skinning, CSS, and Design - Turn DNN Announcements Module into a jQuery Slider
# http://sekpedia.sek.net/sekpedia/index.php/Aquaponics_training

By TrackBack on   Friday, April 05, 2013 12:24 PM

backyard liberty review

DotNetNuke Tips for Skinning, CSS, and Design - Turn DNN Announcements Module into a jQuery Slider
# backyard liberty review

By TrackBack on   Friday, April 05, 2013 8:06 PM

thechattersbox.com

DotNetNuke Tips for Skinning, CSS, and Design - Turn DNN Announcements Module into a jQuery Slider
# thechattersbox.com

By TrackBack on   Friday, April 05, 2013 8:32 PM

www.shanisemall.com/groups/fish-farms-uk/

DotNetNuke Tips for Skinning, CSS, and Design - Turn DNN Announcements Module into a jQuery Slider
# www.shanisemall.com/groups/fish-farms-uk/

By TrackBack on   Saturday, April 06, 2013 7:40 AM

click through the up coming web page

DotNetNuke Tips for Skinning, CSS, and Design - Turn DNN Announcements Module into a jQuery Slider
# click through the up coming web page

By TrackBack on   Saturday, April 06, 2013 11:59 AM

instantpaydayloans50.co.uk

DotNetNuke Tips for Skinning, CSS, and Design - Turn DNN Announcements Module into a jQuery Slider
# instantpaydayloans50.co.uk

By TrackBack on   Tuesday, April 09, 2013 10:46 AM

http://www.myfirstjerk.com

DotNetNuke Tips for Skinning, CSS, and Design - Turn DNN Announcements Module into a jQuery Slider
# http://www.myfirstjerk.com

By TrackBack on   Wednesday, April 10, 2013 7:47 PM

rebelmouse.com

DotNetNuke Tips for Skinning, CSS, and Design - Turn DNN Announcements Module into a jQuery Slider
# rebelmouse.com

By TrackBack on   Saturday, April 13, 2013 1:44 PM

https://www.rebelmouse.com/UINTexasLottery

DotNetNuke Tips for Skinning, CSS, and Design - Turn DNN Announcements Module into a jQuery Slider
# https://www.rebelmouse.com/UINTexasLottery

By TrackBack on   Saturday, April 13, 2013 3:17 PM

rebelmouse.com

DotNetNuke Tips for Skinning, CSS, and Design - Turn DNN Announcements Module into a jQuery Slider
# rebelmouse.com

By TrackBack on   Saturday, April 13, 2013 3:18 PM

Payday loans uk no credit check

DotNetNuke Tips for Skinning, CSS, and Design - Turn DNN Announcements Module into a jQuery Slider
# Payday loans uk no credit check

By TrackBack on   Monday, April 29, 2013 4:41 PM

baidu censor

Some countries censor Internet content and not just rogue regimes such as the Iranian mullocracy. Poor people! http://www.baidu.com
# baidu censor

By TrackBack on   Tuesday, April 30, 2013 7:38 AM

Your name:
Gravatar Preview
Your email:
(Optional) Email used only to show Gravatar.
Your website:
Title:
Comment:
Security Code
CAPTCHA image
Enter the code shown above in the box below
Add Comment   Cancel 

Send me a message.

Name:*
Email Address:*
Message:*
Security Code:
CAPTCHA
Enter the code shown above in the box below
* required Submit   Cancel