Go To Content
codylindley.com

codylindley.com

jTip – A jQuery Tool Tip

Hot on the heels of ThickBox comes jTip, a jQuery tool tip solution. Of course, a tool tip type solution is anything but monumental; you don’t have to tell me that. Regardless, given my keen liking for the great jQuery library, along with a legitimate need to provide one last solution before I left Albertson’s, I have conjured up a tool tip solution using jQuery. So yup, it’s just another tool tip, but maybe with a little more flexibility/customization than what you might currently be use to with similar solutions.

jTip, not unlike Thickbox, pulls data from the server using a hidden http request. It’s nothing that fancy, really, just your normal everyday over hyped AJAX/AXAH type stuff. In keeping with all of this web 2.0 silliness, this means all of the tips are external. This is a handy feature depending upon the type of usage a person might intend for jTip. Originally, I built jTip to be used on a web application UI that requires the explanation of several redundant form fields in multiple web applications with similar functionality. For example, as showcased in my example, a user can roll-over a question mark (?) and get a detailed explanation of the password’s requirements. A single file can be used to keep these requirements consistent across an application as well as all applications that may require a password. Of course, the same thing could be done with a single HTML file and a pop-up window, but then it wouldn’t be web 2.0 certified, would it? Seriously though, this solution could easily be used with a database instead of a static htm file. For instance the file I link to could contain php that would connect to a database for the tool tip text. And yes, that would make more sense then the example I am showing here. Unless of course using a database to store and update information is not an option.

Ok, so all you really want to know is, exactly what does jTip do. At this point you can simply check out the demo, or read my quick and dirty definition of jTip below.

What does jTip do:

jTip pulls content into a tool tip using the HttpXMLRequest object. By adding a class attribute value of “jTip” to a link element you can create a tooltip from the content found in the file the href is pointing too. Also jTip can be customized by providing user defined widths (defaults to 250px wide) via a url query string. The height is liquid and stretches to match the content that fills the tool tip. Additionally it’s possible to provide a link (via url query string) to a jTip tool tip link element (a href) so that the link will still function as expected by the user. See the Yahoo link in the demo for a working example.

 
  1.   #1 Comment Posted by Hugh Griffith on Jun 16, 11:31 AM

    Pretty slick for a guy with so little hair.

  2.   #2 Comment Posted by Yannick on Jun 16, 11:37 AM

    Cody this is definitely slick. Very very nice.

  3.   #3 Comment Posted by Jack on Jun 18, 02:44 AM

    Looks really good.

    I already use a jquery.js file for thickbox. Will these conflict with each other? Can I link to just one of them inside my head.php?

  4.   #4 Author Comment on Jun 20, 09:44 AM

    @Jack – Nope, no conflict. Link to just one jquery.js file.

  5.   #5 Comment Posted by Gilbert on Jun 23, 05:41 AM

    Cody, this is great! Although I have some troubles with FireFox with it. If I use an external link as parameter I get only the loading gif. Nothing else hapens. It works well in IE though. Problem looks like this:
    href=”http://nikt.unibas.ch/showglossar.cfm?word=FTP”

    Would be grateful for any help. Regards
    Gilbert

  6.   #6 Comment Posted by Jason on Jun 23, 09:58 AM

    This is fantastic! The more I see of jQuery, the more I like it.

    One thing I’ve noticed, though… there’s a slight flickering if you move your mouse over the question mark while the tooltip is currently displayed.

  7.   #7 Author Comment on Jun 23, 10:03 AM

    @Jason – Which browser? I do not see this on FF (windows).

  8.   #8 Comment Posted by schnuck on Jun 23, 02:15 PM

    very nice, though, as mentioned above, heavy flickering in safari 2.0.x – a workaround would be brilliant. thanks.

  9.   #9 Comment Posted by Jason on Jun 23, 03:22 PM

    Sorry, I thought I had the browser in there; I must’ve edited it out accidentally. Like schnuck, I see it in Safari.

  10.   #10 Author Comment on Jun 23, 03:38 PM

    @Jason – Which version of safari?

  11.   #11 Author Comment on Jun 23, 04:01 PM

    @Jason – Never mind, I think I fixed the issue. Check out the demo and download again. I change the code so that the tool tip will not flicker in safari anymore.

  12.   #12 Comment Posted by Jason on Jun 23, 04:14 PM

    I just looked at the demo, and the flicker is gone. Excellent work. Thanks much.

  13.   #13 Comment Posted by Chris on Jun 24, 02:20 AM

    Luv the work Cody, question though. Would one be able to keep the tool tip static to place a link in so one could click on it to go to another page, etc… Maybe an adjustment I could make? Thanks again!

  14.   #14 Comment Posted by Shaun on Jun 25, 03:05 AM

    can this be modified so it doesn’t use an outside file and just uses whatever is in the title attribute like regular tooltips?

  15.   #15 Author Comment on Jun 25, 08:47 AM

    @Shaun – Not yet.

  16.   #16 Comment Posted by Dan Atkinson on Jun 26, 03:42 AM

    I really like this!

    It’s really smart and helps me in some situations.

    Unfortunately, it doesn’t use valid XHTML, which I need to use. The main gripe I have is the use of ‘name’ for the title of the tooltip.

    Is there any chance of changing this in the future?

    Cheers.

  17.   #17 Author Comment on Jun 26, 09:51 AM

    @Dan – Are you sure that the name attribute is not valid XHTML. It validates in DW for me using transitional and strict.

  18.   #18 Comment Posted by Dan Atkinson on Jun 26, 12:53 PM

    Yes. I’m positive.

    I validated the code using both Tidy, and then the W3C validator. Both come up as showing the use of name in hyperlinks to be deprecated.

    Further research pointed me to:
    http://www.w3.org/TR/xhtml1/#h-4.10

    It says here that name was formally deprecated, in elements such as [a, form, img], as of XHTML 1.0.

    May i suggest using title or rel instead?

  19.   #19 Comment Posted by Gilbert on Jul 6, 04:06 AM

    Hi all,
    sorry but I cant use thickbox and jtip in the same page. The size of the jquery.js differs too in the two examples ! Can someone please post a working combination of both cool tools here or somewehre please ???

  20.   #20 Comment Posted by Jack on Jul 6, 09:27 AM

    I plan on using these tooltips, Cody.

    I made a few minor modifications using some of the suggestions found here, as well as some of my own.

    http://15daysofjquery.com/jquery-tooltips/21/

  21.   #21 Comment Posted by Matt on Jul 7, 02:06 PM

    Clean and flexible, I like your work here.

    Do you know why there is a hiccup when you set your containing div (contentPad) to a fixed width? If I set the width to 530px, for instance, the “No Specified Width” tip jumps off screen.

  22.   #22 Author Comment on Jul 8, 08:36 AM

    @Matt – I tried this, but did not see this happen (in FF and IE). I set the div to have a fixed width and the tool tip function fine. Which browser are you using?

  23.   #23 Author Comment on Jul 8, 08:45 AM

    @Jack – Nice work. Everything can always be better. : – )

  24.   #24 Comment Posted by oppo GOP on Jul 8, 03:14 PM

    проверка

  25.   #25 Comment Posted by Antonio Bueno on Jul 12, 11:48 AM

    Extremely nice.

    Just a little “but”. When the linked text has a line break in the middle, the tooptip appears in the wrong side (WinXP, Opera9).

  26.   #26 Author Comment on Jul 13, 09:39 AM

    @Antonio – Good point, I’ll have to think about that. Thank you for pointing it out.

  27.   #27 Comment Posted by Matt on Jul 19, 08:36 AM

    @ Antonio – If you add a few CSS properties to the jTip class you can keep your links from wrapping: “white-space: nowrap” (forces links to a single line and works for all browsers except for IE 6, which somehow thinks they still span two lines) and “display: inline-block” (which reminds IE that links pushed to the next line are still inline elements).

    From what I can tell, some browsers (definitely Safari) take issue with the inline-block property because it stretches the wrapping link to a block that spans two lines (while, paradoxically, keeping it an inline element). I decided to specify the alignment for the block—“vertical-align: bottom”—which seemed to do the trick.

  28.   #28 Comment Posted by Gilbert on Jul 24, 05:09 AM

    Hello Cody,
    first of all again congratulations to your great jQuery Tools. I tried to find some answers on my above questions but so far no one could help me. The final problem I have is:
    How can I get a working example of JTip and LightBox v2.2 working together. Seems that somehow jquery and scriptaculous dont work together ?
    Please help me. Thanks

  29.   #29 Author Comment on Jul 25, 04:34 AM

    @Gilbert – Sorry Gilbert but I just don’t have any experience with jQuery and scriptaculous/prototype together. Did you check this page.

  30.   #30 Comment Posted by C.J. on Jul 27, 08:44 AM

    The only problem I ran into was when you have a list of a lot of links, if you do not leave space at the bottom, then the code will not display. Check out this link:

    http://www.nssa.org/jquery%2Dtooltip/conferenceRatings2005_6b.asp?event=278

    works fine with the top entries but when you scroll down to the bottom, you run into issues.

  31.   #31 Author Comment on Jul 27, 11:23 AM

    @C.J. - Yup, it currently does not flip on its x axis based on browser height….maybe on the next version?

  32.   #32 Comment Posted by Dominik Hahn on Jul 28, 05:15 PM

    Hello!

    Any solution to possible special character problems? All my Umlaute are broken.. :(

  33.   #33 Comment Posted by Michael on Aug 9, 01:30 PM

    Cody -This has exponentially assisted in the usability of a client’s site.

    One issue- If i place the spans in a PEAR HTML QuickForm I get sparatic flickering in all browsers.

    $form->addElement(‘text’,’login’,’Desired Username?:’,’class=”signupData”’);

    (The link code is hidden was wrapped around where the question mark is.

  34.   #34 Comment Posted by Simon on Aug 10, 04:33 AM

    Cody – I think I spotted a problem in IE. If there is a form element below the jTip div it obscures it!

  35.   #35 Comment Posted by Dylan on Aug 24, 05:56 AM

    Nice work. It would be cool to use these tooltips as some sort of context menu (which is what I was actually looking for). Would it be possible to allow mouseovers on the tooltip, and to remove the tooltip only when the mouse moves from the link AND the tooltip itself? I could try to hack it in, but I’d much rather this option was added to jtip.

  36.   #36 Comment Posted by Stoyan on Aug 25, 01:40 PM

    Thanks Cody for sharing this script!

    I wanted to try it out for an image gallery and I did a few modifications, here’s the modified .js – http://www.phpied.com/wp-content/uploads/2006/08/jtip.js

    1. The script was trying to read the linked url (assuming html), so it’s not showing the image, but reading the binary data instead. So in the function JT_show I made a regexp check and write an img tag if the file extension of the linked file is gif|jpg

    2. I didn’t like the fact that the script was not working if you don’t have an ID attribute in the href. I changed JT_show to accept only one param – the href object and to figure out the rest. I also had to change the get*() methods (which were accepting element ID) to now accept object reference.

    I hope it helps for the next release ;)

    Thanks again!

  37.   #37 Comment Posted by RichardP on Aug 26, 07:27 AM

    This is very slick – something for which I’ve been waiting a long time.
    One small blemish: (observed at least in Safari & FF/Mac) when (relatively) window is narrow/font-large the box sometimes insists on showing to left (and thus being partially cut off) – even when there is MORE room for it to display to the right.
    ?any chance that another alternative display could be offered (when neither left nor right offers room to display full box: ? CENTER box… and display directly BELOW (or above… or right atop when needed) ?

  38.   #38 Comment Posted by mix on Aug 29, 02:39 AM

    great! this is very easy to use :)

  39.   #39 Comment Posted by Scott on Sep 7, 01:00 PM

    Hi,

    Looking at your example page I would say that you need to tweek your script a bit.

    The tip window should never pop up beyond the border of the browser window. How are people suppose to read the tip?

    It’s left border should not go beyound the left border of the browser window and it’s bottom most border should not go beyond the bottom border of the browser window.

    You should be able to control this ustilizing css. It’s an object right?

    I’ve been on sites where you have a window pop up and the borders go beyond the browser window borders. The big problem with this is that you can’t read all the data in the tip window. When the mouse moves off of the link, the window disapears. So if you scroll down to read the rest of the content, the tip window disapears and you never get to read all the information in the tip.
    Likewise, if the tip window is beyond the browsers left border, you can’t even side scroll to read the entire tip.

    Other than these two bugs, I like this. My stance on JavaScript is to keep it out of web design all together. However, with Ajax, there are features that not only make it worth using, but will make the hardest anti-JavaScript pundant enable JavaScript in their browsers. They may not keep it enabled, but for a site that proves to be honest and trustworthy, they will enable JavaScript for the benefit that those features provide.

  40.   #40 Comment Posted by Mikey on Sep 7, 07:43 PM

    There seems to be a positioning problem when wrapping an anchor classed as a jTip around an image. The tip’s arrow appears near the upper left corner of the image. The script doesn’t seem to be calculating the actual width of the element inside. Is this normal, and should I just see if I can tweak the script’s width reporting?

  41.   #41 Comment Posted by Mikey on Sep 7, 07:54 PM

    Yep, I just threw an alert in there, and the offsetWidth for my image elements is returning 0.

  42.   #42 Comment Posted by onno on Sep 14, 02:14 AM

    It seems that jtip doesn’t respect borders of the browser. It goes beyound the bottom of the browser. And in some cases beyond the left side. Is there a fix for this?

  43.   #43 Comment Posted by Giorgos on Sep 18, 07:24 AM

    Great Tooltip,

    two suggestions though.

    1) href=”page1.htm?width=300 is not good practice if you want to give Search Engines clean URLs, you could have made a custom attribute in the anchor tag and used it for storing the parameters(i.e. visit page 1)

    2) if you can have sticky tooltips (that don’t go away when you unhover) that would be the best tooltip library I have seen

  44.   #44 Comment Posted by Giorgos on Sep 18, 11:45 AM

    addition on number 1 since formater ate my a anchor

    (i.e. < a href="page1.htm" jtparams="width:300" > visit page 1 < / a >)

  45.   #45 Comment Posted by Adam Youngers on Sep 22, 08:35 PM

    This is great, I’d love to see a version that overlays select boxes in IE. I believe it’s done by inserting an IFRAME behind the tool tip and in front of the select box.

  46.   #46 Comment Posted by Micah on Oct 2, 06:22 AM

    Thank you so much, this was exactly what I was looking for. It took a while to figure out how to get this to work with an AJAX call using Ruby on Rails, but now that I’ve got it, it works beautifully.

  47.   #47 Comment Posted by carlos on Oct 4, 02:28 PM

    GREAT TOOLTIP!!!
    Do you have a script to have tooltips that stay visible when you roll over them

    Thank again

  48.   #48 Comment Posted by Ado on Oct 12, 10:45 AM

    Cool plugin, though when I reduced teh width of FF the tooltip went to the left as you would suspect but was half hidded as it went off the left of the screen set that the min X pos is 0 and the the size would shrink if need be to be perfect but well cool.

  49.   #49 Comment Posted by bamby on Oct 15, 11:23 AM

    Thanks

  50.   #50 Author Comment on Oct 22, 09:10 AM

    @Everyone – Before you use this, you should check out this updated version.

  51.   #51 Comment Posted by Jason on Oct 23, 05:55 AM

    Thanks for the update. I suggest adding it into the main content of this article if possible (a link to the new version). I just spent about an hour trying to fix things in the old version. Oh well. :P

    Thanks again!

  52.   #52 Comment Posted by momo on Nov 3, 03:27 PM

    This is great. I am big fan of this now. One problem I see is if I have query string param in the link something like this
    Go To Yahoo
    the tool tip comes up ok but when i click on the link nothing happens

  53.   #53 Comment Posted by Jonathan on Nov 9, 02:23 PM

    I’m trying to animate the jtip using fadeIn and/or slideDown instead of the default show but I’m getting mixed results like the arrow not showing up or in the case of slide down only the content is loaded without the jTip box… Anybody enlighten me as to how to fix or why it is responding like this? I’m guessing it has something to do w/ the timing of animations

  54.   #54 Comment Posted by Nandi on Nov 10, 07:28 AM

    jTip starts and then shuts down if the mouse gets over an element and immediately moves out.
    Most surfers who visit a site just move around the mouse when they are reading. This causes some flickering.
    I recommend adding some time to the user before starting to show the tip.

  55.   #55 Comment Posted by bass on Nov 13, 10:12 AM

    Nice tools :)
    the updated version doesn’t works well with the latest compressed-jquery. The tooltip is wrong placed.

    So is possible to use jtip inside a tbox box?

    thanks for your great tools.

  56.   #56 Comment Posted by Banh on Nov 14, 12:02 PM

    All I can say is “very nice script”!

    I tried to use this script and loved it.
    If the tooltip description does have some hyperlink that links to other external reference, what is the best way to modify the Jtip? I appreciate very much for any helps.

    Thanks,
    banh

  57.   #57 Comment Posted by mG on Nov 20, 05:16 AM

    Elegant! Very Elegant! I was wondering if you can give us a few tips on how to make jTip stick?

  58.   #58 Comment Posted by bqfan on Nov 30, 01:50 PM

    It doesn’t present scandivanian characters! We have to use Unicode instead.

  59.   #59 Comment Posted by Stoyan on Dec 4, 07:55 AM

    What do I need to modify if I wish not to use the AJAX functionality, i.e. to store the tooltip information in the same file in separate divs:
    .. my tooltip info .. ?

  60.   #60 Comment Posted by Romasio on Dec 12, 06:40 AM

    I think every time to request info from server when mouse gets over trigger is a bit too much overhead… maybe some caching would help:)

  61.   #61 Comment Posted by necudeco on Dec 16, 06:11 AM

    I have do a hack of JTip. It’s allow use JTip in every html tags, not only in anchors.

    You can see, here:
    http://necudeco.blogsome.com/2006/12/16/hacking-jquery-jtip/

  62.   #62 Comment Posted by Guillaume on Dec 21, 08:04 AM

    This is a great !
    Very good job, I will use it everywhere :)

  63.   #63 Comment Posted by Gerry Danen on Jan 17, 10:58 PM

    I like jTip’s simplicity. I keep all my tooltips in a separate folder for easy maintenance.
    Somewhere down the road, I may set up a MySQL table for something like a FAQ.
    Surely more load on the server, but then users could contribute to the FAQ file.

  64.   #64 Comment Posted by Atle on Jan 23, 06:50 AM

    Thanks for another great script, Cody! I’m using Jacks W3C compliant version.

    I have an issue with flickering, though.

    E.g. on http://www.marcopologames.com/games/725/mystery-case-files-ravenhearst.html it will flicker easily when you hover the mouse over the question mark after download size in both IE and Firefox.

    On other uses, like on http://www.marcopologames.com/games/top.html (hover over game icon) it works great.

    I tried the “updated version” but it gave me formating issues in Firefox.

    Is there a fix for the flickering issue?

  65.   #65 Comment Posted by Greg on Jan 31, 11:58 AM

    I need the tooltips to stay visible when hovering over it, because I need to put links in the tooltips.

    Also, I need to add tooltips to images and tags other than anchor tags.

    Are these features possible with jtip?

  66.   #66 Author Comment on Feb 1, 06:12 AM

    @Greg – The features you are asking about need to be added to the script. As of right now I have no plans of updating this script. You might try it yourself.

  67.   #67 Comment Posted by Christian on Feb 13, 12:52 PM

    Hi,
    this is a great tool!

    I just have a problem to get Special Characters like “ä, ü, ö “ to show correctly in a Tooltip box. ...

    Any idea, how to solve this? Happens even when using your example and just adding these chars to the ajax.htm

  68.   #68 Comment Posted by Rajiv on Feb 13, 09:19 PM

    This is excellent tooltip, but I am not sure how can we save the tooltip on the same file. I could not manage to to do it. Finally ended up using Interface API with Jquery.
    See : http://www.wheelsandroads.com/index.php

  69.   #69 Comment Posted by ccGooser on Feb 22, 03:16 PM

    Firstly, Cody I hope you’re making a lot of money in your day job, because you deserve every penny !

    Now for my question if anyone here can offer advice. I tried to modify jtip.js to open passthrough clicking of links in a ‘new’ window by binding the link ID instead to window.open ie.

    ..linkId).bind(‘click’,function(){window.open(url…

    But now I get x instances of the same window opening at once, where x is the number of times I have hovered over my hyperlink.

    unbinding first, ie .unbind() to remove any prior binds solves the problem, but causes other issues.

    Any suggestions??
    Thnx ccg.

  70.   #70 Comment Posted by Atkati on Mar 15, 10:04 AM

    Whit recent version of JQuery, it isn’t working for me in MSIE...

    Can you make a fix for it ?

    I try to call the JTip after a $.post call with JQuery.
    But it doesn’t work with current JQuery version and $.post isn’t working with your bundled version.

  71.   #71 Comment Posted by Nigel on Mar 15, 10:35 PM

    Hi

    Great work!

    Is there a way to make the tooltip stay visible long enough so that a user can click on a link within the tooltip itself (i.e. the external HTML loaded into the tooltip has links).

    I’d imagine the tooltip would remain visible while the cursor is hovering on it but would disappear after one of the following…

    1) a specified time
    2) a click either within or outside the tooltip
    3) a rollover of another tooltip

    Many thanks in advance.

    Thx
    Nigel

  72.   #72 Comment Posted by Andrea on Mar 27, 03:24 AM

    Hi Cody

    I’ve installed this great Jquery plugin.
    I have a problem with external link.
    If the page that my href point to is external (example: google.it or yahoo.it) it returns this error
    uncaught exception: Permesso negato al metodo di chiamata XMLHttpRequest.open

    Can you explain me why?

    Thanks a lot

  73.   #73 Comment Posted by Colyn on Mar 29, 06:46 PM

    Nice work.

    You should know that if you click on the jtip link more than once without closing the popup, it creates multiple popups on top of each other resulting in having to close them all.

    I added the following code to the very top of the JT_show function that should solve that:

    if ( $(’#JT’).css(‘display’) != ‘none’ )
    { $(’#JT’).remove();
    }

  74.   #74 Comment Posted by Alberto on Apr 16, 08:38 PM

    Hi Cody
    I have trayed to use the jTip in a link whith a php code (like: http://..example.php?ID=1) but not work.
    You have suggestions ?
    Thanks

  75.   #75 Comment Posted by Rechtsanwalt Strafrecht on Apr 19, 08:06 AM

    Cody this is definitely slick. Very nice.

  76.   #76 Comment Posted by Rudy Sugiharto on Apr 20, 05:07 PM

    Alberto,
    i think you haven’t change ‘index.htm’ -> ‘index.php’

  77.   #77 Comment Posted by Bruno Goyanna on Apr 25, 11:16 PM

    @Greg
    I did some changes on the updated code to keep the TIP until a hover out happens from the tooltip DIV.

    1- On JT_init()

    $(“a.jTip”) .wrap(’‘) .hover(function() { JT_show(this.href,this.id,this.name) },function() { }) .click(function(){return false});

    removed the hover out function. Here we could just add this other call over a.jTipFixed for example.

    2 – JT_show() first line added to avoid open multiple tooltips

    $(’#JT, #JT_arrow_left, #JT_arrow_right’).hide().remove();

    3 – JT_show() last line added to remove tooltip when hover out the tooltip area

    $(’#JT’).show().hover(function() { },function() { $(’#JT, #JT_arrow_left, #JT_arrow_right’).hide().remove(); });

    Hope this helps the people that would like to have links or actions inside the tooltip, and tks for the great plugin…

  78.   #78 Comment Posted by sidnei on May 17, 01:43 PM

    Thank you so much for this script!!!
    What a wonderful job!

  79.   #79 Comment Posted by Alan Judin on May 21, 01:14 PM

    Dear Cody,

    Thank you for the tool tip tht you have given us,Bruno mentions that you can get the tool tip to hang around after hovering, I tried his example but canot get it to go away. I gues I am not sure where he expects me to put part 2 and 3 of his example on your page (last comment) in Jtip

    Please help

    Kind regards
    Alan Judin
    SAInternet.com
    (South Africa)

  80.   #80 Comment Posted by Khurshidali Shaikh on May 23, 02:09 AM

    Hey,

    Thanks for the great tooltip.

    I am using it for a website where i am showing tooltip on image thumbnails.

    I observed that as my page becomes longer sometimes (in Firefox 1.5 and even IE 6.x) the images further down the page fail to show the tooltip.

    I managed to fix this by changing the below line in the jtip.js

    $(document).ready(JT_init);

    to

    $(document).load(JT_init);

    Looks like when the ready event is fired and some of the images are still being downloaded then jquery fails to find elements “a.jTip” which are not yet rendered completely. Maybe this is a browser thing and not a jquery problem. Changing the event to onload works great.

    Maybe this will be helpful to others who experience the same issue.

  81.   #81 Comment Posted by Martin Wehrle on May 26, 02:55 AM

    hi, great tool(-tip)... But is it possible to fix it and close with a click? I think it would be cool to use it for login forms, mail- forms etc… (???). I just search for a those kind of interactive pop-up, because thickBox etc is to much screen action for me… ;-)

  82.   #82 Comment Posted by Ken Roberts on Jun 2, 12:55 PM

    This is great. Thank you.

    Question: My tips are showing an html table, with rows that I don’t want to wrap. If the browsers font is too big the text spills over my hardcoded width (but I’d rather not make the width bigger because then most viewers see too much whitespace.)
    How could I make the width scale based on the users browser font setting. Or even better, make the width just “snap to fit” the table width?
    Thanks again.

  83.   #83 Comment Posted by Dominik on Jun 20, 03:55 PM

    What if I have several tooltips on one page. Will that means that so many sequential file read will apprear since tooltip content is allways retrieved from a file. Is it possible to add tooltip text in A HREF ... with no additional files …

    Maybe I’m missin’ something. Anyway … great work.

    Thank you …

  84.   #84 Comment Posted by iddaa on Jun 21, 09:03 AM

    RE:

    Hi,
    this is a great tool!

    I just have a problem to get Special Characters like “ä, ü, ö “ to show correctly in a Tooltip box. ...

    Any idea, how to solve this? Happens even when using your example and just adding these chars to the ajax.htm

    Thanks all.

  85.   #85 Comment Posted by stefano on Jun 21, 10:32 AM

    Great Job!

    I’d like to use it with area tag instead of anchor tag is this possible?

  86.   #86 Comment Posted by tercume on Jun 29, 02:58 PM

    Thank you so much for this script!!!

  87.   #87 Comment Posted by McHooke on Jul 9, 08:42 AM

    Good idea, but I don’t see the example (he is don’t work in firefox, win).

  88.   #88 Comment Posted by chat on Jul 16, 01:16 PM

    veryy Good site..Thank You.

  89.   #89 Comment Posted by halo on Jul 17, 10:36 AM

    hi, great tool(-tip)... But is it possible to fix it and close with a click? I think it would be cool to use it for login forms, mail- forms etc… (???). I just search for a those kind of interactive pop-up, because thickBox etc is to much screen action for me… ;-)

  90.   #90 Comment Posted by sohbet on Jul 17, 10:37 AM

    RE:

    Hi,
    this is a great tool!

  91.   #91 Comment Posted by Chad on Jul 17, 02:22 PM

    How do I make this work under ajax tabbed pages?

    I have this in the header

    It works on regular pages, but not sub-ajax based pages.

  92.   #92 Comment Posted by oyun on Jul 17, 02:39 PM

    Thank you so much for this script!!!
    What a wonderful job!

  93.   #93 Comment Posted by Clemens M. Huerten on Jul 20, 01:06 PM

    Hi Cody!
    Thank you for your great jTip solution. I want to use it on my website. But I saw also the limitations concerning the positioning of the tooltip.

    My aim is to achieve best usability for my visitors. With your jTip we get following problems:

    If the tooltip flips to the right, the free place for the tooltip is calculated without taking into account, that the linked words will have a certain length. By this length the tooltip will show up more to the right and then can be clipped / trimmed at the right browser limit, as there is no third column at the right.

    If the tooltip flips to the left, I have no problems, because on the left there is always my navigation. As long as I do not exceed the width of the navigation, everything is nice.

    If the linked words are at the bottom of my webpage, the tooltip will be clipped / trimmed at the bottom boarder of the browser window. This is really ugly because with the link, I have given the promise to the visitor, that he will get an extra info here. But if it shows up, parts of it cannot be accessed. Grrrr…

    My website is based on Joomla. In Joomla we have a JS library called OverLIB and you will surely have heard about it. http://www.bosrup.com/web/overlib In OverLIB, there is a funtion called “hauto” and “vauto”. If it is active, the tooltip will turn around the linked word in just that direction, were there is enough place to show it completely without any trimming / clipping. So the tooltip even may show up above the linked word! Any of 360° around the link is possible.

    But OverLIB has one very big disadvantage: It does not use AJAX. If I have 10 or more tooltips on a web page, all the tooltip content will be loaded, even if the visitor will not use any of them.

    So my great wish is: Could you extend your jTips with the same function, which is implemented in OverLIB and which is causing the hauto and vauto function?

    I am sure, that there will be no other AJAX based tooltip with such a feature and you will be the first to bring it out!

    Clemens
    Stuttgart / Germany

  94.   #94 Comment Posted by klnikita on Jul 24, 05:14 AM

    Hello, i think that i have found another slight problem when using the code in IE6.
    It’s related with the div over a select case.

    Here is my updates:

    function JT_init(){ $(“a.jTip”) .hover(function(){JT_show(this.href,this.id,this.name)},function(){$(’#JT’).remove();if($.browser.msie){$(’#JT_IFRAME’).remove();}}) .click(function(){return false});
    }

    and

    function JT_show(url,linkId,title){
    ...same code …
    $(’#JT_copy’).load(url);
    if($.browser.msie){
    $(“body”).append(”“);
    $(’#JT_IFRAME’).height($(’#JT’).height());}
    }

  95.   #95 Comment Posted by klnikita on Jul 24, 05:24 AM

    oups $(“body�).append(�“); is empty , the content is :

  96.   #96 Comment Posted by sohbet on Jul 25, 07:36 PM

    That was a very well thought out analysis. I agree with William on making the voting results hidden until one votes. The only piece I see missing that no one has mentioned so far is removing BuryIt. I don’t mind so much that friends collaborate to get stories to the front page faster. What I object to is that others have the power to effectively cancel my vote. There is no analog to that in a Democracy. Remove Bury It and more varied stories will appear on the site, thus attracting or keeping more varied users. Remove Bury It and the effects of collaborative voting become minimized.

  97.   #97 Comment Posted by Siir on Jul 25, 07:40 PM

    Very Good site Thanks You..

  98.   #98 Comment Posted by chat on Jul 25, 07:44 PM

    Thank You!

  99.   #99 Comment Posted by Vaughan on Jul 26, 01:21 AM

    jTip rocks – a very useful little script this! Thank you so much.

    I was curious to know how the tooltip is able to scroll with the page content. Can you shed any light on this?

    Basically, I have added it to a scrolling div (height: 500px; overflow: auto;), and it works great, however, when the div is scrolled, the tip stays in a fixed position. If the div does not scroll (no height, no overflow) the tip appears and points to the correct spot, and when the page is scrolled, moves with the page and continues to point to the correct spot.

    Is there a way to set a reference so that the tip would move along with the div that is scrolled?

  100.   #100 Comment Posted by iddaa on Jul 27, 08:26 PM

    Do you know why there is a hiccup when you set your containing div (contentPad) to a fixed width? If I set the width to 530px, for instance, the “No Specified Width� tip jumps off screen.

  101.   #101 Comment Posted by Sohbet on Jul 30, 01:23 PM

    oups $(“body‿).append(‿“); is empty , the content is :

  102.   #102 Comment Posted by sohbet on Aug 10, 07:22 PM

    Thanks for the wonderful demos. Kleje i kleje przemyslowe. Nice article veryy Good Site..

  103.   #103 Comment Posted by muhabbet on Aug 13, 08:34 AM

    Very Good site Thanks You..

  104.   #104 Comment Posted by Discret on Aug 14, 08:22 AM

    Hi,
    <a href=“0_accueil/rci.htm?width=250&amp;link=http://inmet07/Projets_RCI.htm” name=“RCI” id=“rci” class=“jTip” target=”_blank”>RCI</a>

    this link opens on the same window despite my parameter is target=”_blank”

    Why is this not working as intended ?

    Much Thanks

  105.   #105 Comment Posted by gifts on Aug 15, 03:12 AM

    jQuery impresses me by the day, and this looks like an excellent resource and application. Keen to check this out and see how it works. I have only started on jQuery recently, so there’s still a lot I’m learning but websites like yours are making it really easy. I’m fascinated with the amount of resources and willingness to share on the internet. I guess this is what makes the ‘new media’ so great – amongst other things. Thanks again!

  106.   #106 Comment Posted by Pendrive on Aug 17, 03:57 AM

    Hi,
    this is a great tool!

  107.   #107 Comment Posted by Sohbet on Aug 21, 10:10 AM

    If you read all these comments, you relize hou lost we realy are when it comes to alternitive feuls. I think there might be some conspiracy from our goverments and there is a lot of con artists in this for money. But one thing is for sure – you can not buy a car that uses water as feul. I think we must start using wind and sun energy to safe money at home and spent it on fuel untill hybrid cars become the norm..

  108.   #108 Comment Posted by Sohbet on Aug 21, 02:33 PM

    How do I make this work under ajax tabbed pages?

    I have this in the header

    It works on regular pages, but not sub-ajax based pages.

  109.   #109 Comment Posted by arkadaÅŸ on Aug 22, 01:13 PM

    very Good site Thanks You!

  110.   #110 Comment Posted by Usb pendrive on Aug 22, 02:21 PM

    Looks really good.

  111.   #111 Comment Posted by original oil paintings on Aug 27, 02:38 AM

    Interesting. But I’m more interested in hearing any test reports for jQuery applications that are using AJAX, any animation for PCs that might have altered the system timer resolution.

  112.   #112 Comment Posted by sohbet Odaları on Aug 27, 12:48 PM

    Very Good..

  113.   #113 Comment Posted by sohbet on Sep 2, 07:50 PM

    Thank you so much..

  114.   #114 Comment Posted by denizengt on Sep 9, 11:47 PM

    Hey Cody, this script is great but.. I’m trying to place this on thickbox, but the tip doesn’t appear. I’ve tried adjusting the Z-index to no avail; the tooltip only works on a normal page? Any ideas?

  115.   #115 Comment Posted by ç§Ÿè»Šæœ?å‹™ on Sep 14, 12:35 AM

    Thank you so much..

  116.   #116 Comment Posted by blurrycloud on Sep 14, 01:28 AM

    uhmm can someone help me about other alternates for this linking code—-> 1Bscript type=“text/javascript”

    src=http://....%1Bjs>

  117.   #117 Comment Posted by Türkçe forum on Sep 14, 11:18 AM

    very Good..Site…Thanks..

  118.   #118 Comment Posted by bill_xiao on Sep 15, 09:02 AM

    jtip isn’t support chinese!

  119.   #119 Comment Posted by sohbet on Sep 16, 01:14 AM

    good works, thanks!

  120.   #120 Comment Posted by chat on Sep 16, 01:16 AM

    uhmm can someone help me about other alternates for this linking code—-> 1Bscript type=“text/javascript�

  121.   #121 Comment Posted by darmowe programy on Sep 16, 05:46 AM

    realy great site, very nice article. Can i translate this article on my site ?

  122.   #122 Comment Posted by NBA on Sep 16, 09:45 PM

    Keep up the good work.
    Thank you…

  123.   #123 Comment Posted by Ali on Sep 17, 06:04 PM

    I have used the script its working fine. thanks. But one issue I have is some links I have in the bottom of my page on which I want to show the jTip. but when mouse overs on those links, the tooltip does not set itself on the screen and goes down the scroll bars. It increases page length which is not a problem, but you cannot scroll down to see the tool tip as mouse outs and the tooltip disappears… you can see it here www.starcomsystems.net/beta . See for two thumbnail images on left and more… link.

    Regards,
    Ali

  124.   #124 Comment Posted by wholesales jewelry on Sep 17, 08:50 PM

    thanks share!

  125.   #125 Comment Posted by Dj Tiesto on Sep 18, 05:39 PM

    If you read all these comments, you relize hou lost we realy are when it comes to alternitive feuls. I think there might be some conspiracy from our goverments and there is a lot of con artists in this for money.

  126.   #126 Comment Posted by Sohbet on Sep 18, 07:24 PM

    Verry Good web Thank Youu

  127.   #127 Comment Posted by youtube on Sep 19, 07:23 AM

    I have used the script its working fine. thanks. But one issue I have is some links I have in the bottom of my page on which I want to show the jTip. but when mouse overs on those links, the tooltip does not set itself on the screen and goes down the scroll bars. It increases page length which is not a problem, but you cannot scroll down to see the tool tip as mouse outs and the tooltip disappears… you can see it here

  128.   #128 Comment Posted by www.lanzar.pl on Sep 19, 10:55 AM

    Keep up the good work.
    Thank you…

  129.   #129 Comment Posted by kale kasa on Sep 19, 11:36 AM

    Thanks good work

  130.   #130 Comment Posted by evden eve nakliyat on Sep 20, 03:27 AM

    thank you

  131.   #131 Comment Posted by Katalog Stron on Sep 20, 06:34 AM

    Thanks!

  132.   #132 Comment Posted by Kevin C on Sep 20, 11:47 AM

    jTip would be perfect if it also allowed a local mode — ie, used a hidden div for content… Any thoughts of extending?

  133.   #133 Comment Posted by ludo top-art on Sep 20, 01:43 PM

    I am interested in the topics discussed but have been feeling a little intimidated by the thought of the work.

  134.   #134 Comment Posted by Kalkan Turkey on Sep 22, 04:23 AM

    How do I make this work under ajax tabbed pages?

    I have this in the header

    It works on regular pages, but not sub-ajax based pages.

  135.   #135 Comment Posted by Lazer Epilasyon on Sep 22, 08:45 PM

    Very good job..

  136.   #136 Comment Posted by temp304 on Sep 23, 10:31 AM

    Very good job. You can visit http://www.javascriptbank.com/javascript/ajax-javascript.html

  137.   #137 Comment Posted by KraL on Sep 23, 04:51 PM

    thank you

  138.   #138 Comment Posted by sohbet on Sep 25, 04:04 AM

    thankss all

  139.   #139 Comment Posted by Comparatisme on Sep 25, 09:01 PM

    Thanks

  140.   #140 Comment Posted by evden eve nakliyat on Sep 26, 05:35 PM

    thankss

  141.   #141 Comment Posted by videoizle on Sep 27, 09:41 AM

    many thanks

  142.   #142 Comment Posted by Bitsin.NET on Sep 27, 05:14 PM

    Sohbet, sevgi, chat

  143.   #143 Comment Posted by Ville on Sep 28, 11:52 PM

    I’m testing jTip and it mostly works very well. On occasion the tooltip gets stuck if it’s “popped up” repeatedly (seeing this at least in FF2). When this happens, the loader image (loader.gif) in a small what-looks-like a div shows up on the bottom of the screen. I first thought this was caused by interaction with the layout and/or other JavaScript on the page I was working on, but then I played with your jTip demo, and was able to reproduce the same issue there. It seems that if the mouse is moved repeatedly and quickly over the popup link, eventually the popup gets stuck “on” (even though the pointer is moved off the popup link), and when I unstuck it (i.e. make it properly disappear) by moving the mouse over the link once again, then off the link, the phantom loader image shows up.

    I doubt the users of the page will be abusing the popup link in this fashion, but nevertheless I thought to mention about it in case you haven’t noticed it.

  144.   #144 Comment Posted by Ville on Sep 29, 12:54 AM

    Following up to my previous comment (#143). The issue seems to only show up in Firefox (currently using 2.0.0.7). The tooltip never gets stuck in IE7.

    See the following link for an example of the phantom DIV that shows up on the bottom of the screen after the tooltip has gotten stuck once: http://tinyurl.com/yp8nau

  145.   #145 Comment Posted by evden eve nakliyat on Sep 29, 05:37 AM

    tesekkurler . thanksssss

  146.   #146 Comment Posted by evden eve nakliyat on Sep 29, 05:38 AM

    [link title=“sohbet”]www.sohbetturk.net[/link]
    [link title=“chat”]www.chatturk.net[/link]
    [link title=“msn nickleri”]www.turkiyemsn.com[/link]
    [link title=“evden eve nakliyat”]www.ak-kelebek.com[/link]
    [link title=“evden eve nakliyat”]www.hayrioglu.biz[/link]
    [link title=“evden eve nakliyat”]www.seferogluevdenevenakliyat.com[/link]
    [link title=“evden eve nakliyat”]www.horoztransport.com[/link]
    [link title=“evden eve nakliyat”]www.evdenevenakliyat.de[/link]

  147.   #147 Comment Posted by evden eve nakliyat on Sep 29, 08:17 PM

    thanks all

  148.   #148 Comment Posted by mp3 on Oct 2, 10:53 PM

    Basically, I have added it to a scrolling div (height: 500px; overflow: auto;), and it works great, however, when the div is scrolled, the tip stays in a fixed position. If the div does not scroll (no height, no overflow) the tip appears and points to the correct spot, and when the page is scrolled, moves with the page and continues to point to the correct spot.

  149.   #149 Comment Posted by evden eve nakliyat on Oct 3, 08:30 AM

    good site :)

  150.   #150 Comment Posted by zayıflama on Oct 3, 08:32 AM

    like it

  151.   #151 Comment Posted by zurna on Oct 3, 05:04 PM

    Link to just one jquery.js file.

  152.   #152 Comment Posted by chat on Oct 3, 05:06 PM

    I doubt the users of the page will be abusing the popup

  153.   #153 Comment Posted by nakliye on Oct 4, 04:46 AM

    thenksss

  154.   #154 Comment Posted by evden eve nakliyat on Oct 4, 04:49 AM

    .,.,.,.,

  155.   #155 Comment Posted by berdan on Oct 4, 05:11 AM

    <a href=“http://www.tamdost.com”>sohbet</a>
    [link title=“sohbet odasi”>www.tamdost.com[/link]

  156.   #156 Comment Posted by uzaktan egitim on Oct 4, 09:00 AM

    Thanks Good

  157.   #157 Comment Posted by Hotel Bayern on Oct 4, 02:11 PM

    good work man, super site

  158.   #158 Comment Posted by Skischule on Oct 4, 02:12 PM

    great and really nice Design

  159.   #159 Comment Posted by nakliyat on Oct 4, 07:58 PM

    thanks nice plugin

  160.   #160 Comment Posted by sohbet on Oct 7, 03:56 AM

    Thank You Blog. Good site.

  161.   #161 Comment Posted by Car Audio on Oct 11, 03:18 PM

    Great!

  162.   #162 Comment Posted by sohbet on Oct 12, 08:41 AM

    sohbet
    http://www.bizimle.com/2.el-ikinci-el.php

  163.   #163 Comment Posted by  evden eve nakliyat on Oct 12, 10:32 AM

    evden eve nakliyat
    evden eve nakliyat

  164.   #164 Comment Posted by chat on Oct 13, 09:10 AM

    sohbet
    chat
    sohbet
    sohbet
    adult
    islam
    sohbet

  165.   #165 Comment Posted by chat on Oct 13, 01:51 PM

    merhabaaalar

  166.   #166 Comment Posted by evden eve nakliyat on Oct 14, 11:46 AM

    how can ı download that
    help me pls

  167.   #167 Comment Posted by ruya tabirleri on Oct 14, 02:22 PM

    thank you all very good

  168.   #168 Comment Posted by Web Tasarımı on Oct 16, 09:18 AM

    Thank you..

  169.   #169 Comment Posted by radyo on Oct 16, 11:58 AM

    Really good webmaster website…

  170.   #170 Comment Posted by sohbet odaları on Oct 16, 03:58 PM

    ThankS …

  171.   #171 Comment Posted by arkadaÅŸ on Oct 16, 04:00 PM

    Thank you …

  172.   #172 Comment Posted by sohbet on Oct 17, 03:56 PM

    http://www.bizimle.com/2.el-ikinci-el.php
    http://www.bizimle.com/3d_resimler.php
    http://www.bizimle.com/29_ekim.php
    http://www.bizimle.com/30_agustos.php
    http://www.bizimle.com/6600_uygulamalar.php
    http://www.bizimle.com/7610_program_download.php
    http://www.bizimle.com/acem_kizi_mp3_midileri.php
    http://www.bizimle.com/acik_ogretim_sinav_sonuclari.php
    http://www.bizimle.com/agaclar_ormanlar.php
    http://www.bizimle.com/ahmet_ozhan.php
    http://www.bizimle.com/ahu_tugba.php
    http://www.bizimle.com/akor_akorlar.php
    http://www.bizimle.com/alisveris_alis_veris.php
    http://www.bizimle.com/almanca_germany.php
    http://www.bizimle.com/almanca_turkce_sozluk.php
    http://www.bizimle.com/altili_ganyan_tahmin.php
    http://www.bizimle.com/am_amciklar.php
    http://www.bizimle.com/am-amcik.php
    http://www.bizimle.com/Angelina-Jolie.php
    http://www.bizimle.com/animasyon.php
    http://www.bizimle.com/ankara_hotel.php
    http://www.bizimle.com/ankarada_satilik_ev_ilanlari.php
    http://www.bizimle.com/anket_sayfalari.php
    http://www.bizimle.com/anna_kournikova.php
    http://www.bizimle.com/anne_anneler.php
    http://www.bizimle.com/anneler_gunu_hazir_cep_mesajlari.php
    http://www.bizimle.com/anneler_gunu_mesajlari.php
    http://www.bizimle.com/antalyada_konutlar.php
    http://www.bizimle.com/araba_ilanlari.php
    http://www.bizimle.com/search_ara.php
    http://www.bizimle.com/search_search_motorlari.php
    http://www.bizimle.com/arkadas.php
    http://www.bizimle.com/arkadas_search.php
    http://www.bizimle.com/arkadas_bul.php
    http://www.bizimle.com/artvin_hopa_resim_galerisi.php
    http://www.bizimle.com/arzu_arzular.php
    http://www.bizimle.com/ascii_mesajlar.php
    http://www.bizimle.com/asian_sites_for_free_email_addresses.php
    http://www.bizimle.com/ask_askim.php
    http://www.bizimle.com/ask_harita.php
    http://www.bizimle.com/ask_hazir_mesaj.php
    http://www.bizimle.com/ask_mesk.php
    http://www.bizimle.com/ask_ogut_99ogut.php
    http://www.bizimle.com/ask_sembolleri.php
    http://www.bizimle.com/ask_siirleri.php
    http://www.bizimle.com/ask_sizi_ele_verir.php
    http://www.bizimle.com/ask_sozleri.php
    http://www.bizimle.com/ask_tazelemek.php
    http://www.bizimle.com/ask_ve_guzellik_tanricasi_afrodit.php
    http://www.bizimle.com/asker_hazir_mesajlari.php
    http://www.bizimle.com/asker_hazir_mesajlari2.php
    http://www.bizimle.com/aski_sicak_tut.php
    http://www.bizimle.com/askim_askim.php
    http://www.bizimle.com/askin_sayilari.php
    http://www.bizimle.com/ask-sozleri.php
    http://www.bizimle.com/asp.php
    http://www.bizimle.com/asp_scriptler.php
    http://www.bizimle.com/at_yarisi_sonuclari.php
    http://www.bizimle.com/ata_demirer.php
    http://www.bizimle.com/ata_sozleri.php
    http://www.bizimle.com/ates_atesli.php
    http://www.bizimle.com/ataturk_ataturkculuk.php
    http://www.bizimle.com/atyarisi_at_yarislari.php
    http://www.bizimle.com/avea_melodileri.php
    http://www.bizimle.com/avrupa_amerika_asya_kitasi.php
    http://www.bizimle.com/avrupa_yakasi.php
    http://www.bizimle.com/aya_ikinci_cikan_insan.php
    http://www.bizimle.com/ayak_ayakta_sex.php
    http://www.bizimle.com/aylin_coskun.php
    http://www.bizimle.com/ayrilik.php
    http://www.bizimle.com/ayrilik_mesajlari.php
    http://www.bizimle.com/ayrilik_nefret_mesajlari.php
    http://www.bizimle.com/aysel_gurmen.php
    http://www.bizimle.com/aysu.php
    http://www.bizimle.com/aysu_basar.php
    http://www.bizimle.com/azerice_canli_radyo.php
    http://www.bizimle.com/baba_babalar.php
    http://www.bizimle.com/babalar_gunu_hazir_cep_mesajlari.php
    http://www.bizimle.com/babalar_gunu_mesajlari.php
    http://www.bizimle.com/bagimli_muptela.php
    http://www.bizimle.com/bahis.php
    http://www.bizimle.com/baliklar.php
    http://www.bizimle.com/bahama_maldiv_adalari.php
    http://www.bizimle.com/baliklar_balikcilik.php
    http://www.bizimle.com/banka.php
    http://www.bizimle.com/banka_bankalar.php
    http://www.bizimle.com/banu_alkan.php
    http://www.bizimle.com/banyo_aksesuarlari.php
    http://www.bizimle.com/basak_sahin.php
    http://www.bizimle.com/basketbol.php
    http://www.bizimle.com/basketbol_basket.php
    http://www.bizimle.com/bayan_arkadas_ariyorum.php
    http://www.bizimle.com/bayan_msn.php
    http://www.bizimle.com/bayanlarla_sesli_sohbet.php
    http://www.bizimle.com/bayhan_gurhan.php
    http://www.bizimle.com/bayram_kandil_hazir_cep_mesajlari.php
    http://www.bizimle.com/bayram_kandil_hazir_cep_mesajlari2.php
    http://www.bizimle.com/bayram_kartlari.php
    http://www.bizimle.com/bayram_mesajlari.php
    http://www.bizimle.com/bayram_slaytlari.php
    http://www.bizimle.com/bayramin_kutlu_olsun.php
    http://www.bizimle.com/bebek_resimleri.php
    http://www.bizimle.com/bedava.php
    http://www.bizimle.com/bedava_bedavalar.php
    http://www.bizimle.com/bedava_cep_melodileri_oyunlari.php
    http://www.bizimle.com/bedava_email.php
    http://www.bizimle.com/bedava_mp3_yukle.php
    http://www.bizimle.com/bedava_oyun.php
    http://www.bizimle.com/bedava_resimli_mesaj.php
    http://www.bizimle.com/Bedava_melodi_bedava_sms__wap_melodi_cep_melodi_polifonik_melodi_turkcell_melodi_nokia_melodi_logo_cep.php
    http://www.bizimle.com/bedava_site_bedava_siteler.php
    http://www.bizimle.com/bedava_sms.php
    http://www.bizimle.com/bedava_web_sitesi.php
    http://www.bizimle.com/bedava-melodi.php
    http://www.bizimle.com/Bedava_melodi_bedava_sms__wap_melodi_cep_melodi_polifonik_melodi_turkcell_melodi_nokia_melodi_logo_cep1.php
    http://www.bizimle.com/Bedava-Sms.php
    http://www.bizimle.com/Bedava-ziyaretci-Defteri.php
    http://www.bizimle.com/begen_begenme_begenenler_begendim_begendiklerim.php
    http://www.bizimle.com/belediye_hizmetleri.php
    http://www.bizimle.com/Ben_sana_olurum_sarisinim.php
    http://www.bizimle.com/bergama_belediye_spor.php
    http://www.bizimle.com/berksan_ben_hic_unutmadim_unutamam.php
    http://www.bizimle.com/Berna_Ozturk.php
    http://www.bizimle.com/besiktas_bjk_mesajlari.php
    http://www.bizimle.com/beyaz_esya.php
    http://www.bizimle.com/beyazesya_beyazesyalar.php
    http://www.bizimle.com/bilet.php
    http://www.bizimle.com/bilet_biletler.php
    http://www.bizimle.com/bilgin-egitim-teknolojileri.php
    http://www.bizimle.com/bilgisayar.php
    http://www.bizimle.com/bilgisayar_computer.php
    http://www.bizimle.com/bilgisayar_pc_pcler.php
    http://www.bizimle.com/bilgisayarda_ses.php
    http://www.bizimle.com/bir_demet_tiyatro.php
    http://www.bizimle.com/bir_istanbul_masali.php
    http://www.bizimle.com/bir_prens_araniyor.php
    http://www.bizimle.com/bir-istanbul-masali.php
    http://www.bizimle.com/biten_iliskiler.php
    http://www.bizimle.com/bitki_bitkiler.php
    http://www.bizimle.com/bocekler.php
    http://www.bizimle.com/bocekler_bocek.php
    http://www.bizimle.com/bolge_bolgeler.php
    http://www.bizimle.com/bolgeler.php
    http://www.bizimle.com/borsa.php
    http://www.bizimle.com/borsa_borsalar.php
    http://www.bizimle.com/borsa_imkb.php
    http://www.bizimle.com/britney_spears_erotik.php
    http://www.bizimle.com/Britney-Spears.php
    http://www.bizimle.com/bu_sabahlarin_bir_anlami_olmali_mp3.php
    http://www.bizimle.com/burc_ask_sevgi.php
    http://www.bizimle.com/burc_burclar.php
    http://www.bizimle.com/burc-burclar.php
    http://www.bizimle.com/burclarin_kotu_yonleri.php
    http://www.bizimle.com/burcu_gunes_mp3_yukle.php
    http://www.bizimle.com/bu-sabahlarin-bi%20anlami-olmali-mp3-yukle.php
    http://www.bizimle.com/buyu_buyuler.php
    http://www.bizimle.com/buyuculuk.php
    http://www.bizimle.com/cagla_sikel_resimleri.php
    http://www.bizimle.com/cakir_kurtlarvadisi.php
    http://www.bizimle.com/camdan_papuclar.php
    http://www.bizimle.com/Cameron_Diaz.php
    http://www.bizimle.com/cankan_yar_yar_sarki_sozleri.php
    http://www.bizimle.com/cankiri_meslek_yuksek_okulu.php
    http://www.bizimle.com/canli_skorlar.php
    http://www.bizimle.com/canli-istek-hatti.php
    http://www.bizimle.com/capkinlik_kacamaklar.php
    http://www.bizimle.com/casino.php
    http://www.bizimle.com/casino_kasinolar.php
    http://www.bizimle.com/Catherine_Zeta_Jones.php
    http://www.bizimle.com/cd_cogaltma.php
    http://www.bizimle.com/cdkey_serial_no.php
    http://www.bizimle.com/cdler.php
    http://www.bizimle.com/cdler_cd.php
    http://www.bizimle.com/cekici_olmak.php
    http://www.bizimle.com/cem_yilmaz.php
    http://www.bizimle.com/cem_yilmaz_yeni_reklam_filmi.php
    http://www.bizimle.com/cep_melodi.php
    http://www.bizimle.com/cep_siirleri.php
    http://www.bizimle.com/cep_telefonlari.php
    http://www.bizimle.com/cep_telefonlari_cep_telefonu.php
    http://www.bizimle.com/cep_telefonu_icin_wavlar.php
    http://www.bizimle.com/cep-melodi.php
    http://www.bizimle.com/cep-telefon.php
    http://www.bizimle.com/cep-telefonu.php
    http://www.bizimle.com/ceza_fan_club.php
    http://www.bizimle.com/cgi_scriptler.php
    http://www.bizimle.com/chat_odalari.php
    http://www.bizimle.com/chat_sesli_chat.php
    http://www.bizimle.com/chat_sohbet.php
    http://www.bizimle.com/christina_aguilera.php
    http://www.bizimle.com/cicek_cicekler.php
    http://www.bizimle.com/Cindy_crawford.php
    http://www.bizimle.com/cine5_sifre_kirici_yeni.php
    http://www.bizimle.com/cine5_sifreleri.php
    http://www.bizimle.com/cinsellik.php
    http://www.bizimle.com/cinsellik_ask.php
    http://www.bizimle.com/cinsel-sapkinliklar-travestizm.php
    http://www.bizimle.com/ciplak_kizlar.php
    http://www.bizimle.com/ciplak_unluler_foto.php
    http://www.bizimle.com/citir_kizlar.php
    http://www.bizimle.com/claudia_schiffer.php
    http://www.bizimle.com/cnn-turk.php
    http://www.bizimle.com/cocuklar_cocuklar_icin.php
    http://www.bizimle.com/cok-komik.php
    http://www.bizimle.com/cok-ozel-resimler.php
    http://www.bizimle.com/corn_pictures.php
    http://www.bizimle.com/counter_strike.php
    http://www.bizimle.com/crack_cdkey.php
    http://www.bizimle.com/cs_1_6_full_download.php
    http://www.bizimle.com/cv_ornekleri.php
    http://www.bizimle.com/define-madenler.php
    http://www.bizimle.com/deniz_denizler.php
    http://www.bizimle.com/deniz_seki.php
    http://www.bizimle.com/deprem_kandilli.php
    http://www.bizimle.com/dergi_dergiler.php
    http://www.bizimle.com/ders_notlari.php
    http://www.bizimle.com/dershane_dersler.php
    http://www.bizimle.com/dijital_yayin.php
    http://www.bizimle.com/dijital-tv-sifreleri.php
    http://www.bizimle.com/dijiturk_canli_yayin.php
    http://www.bizimle.com/dilek_dilekler.php
    http://www.bizimle.com/dini_ekartlar.php
    http://www.bizimle.com/disk_diskler.php
    http://www.bizimle.com/divx_filmler_download.php
    http://www.bizimle.com/diyarbakir_bilim_tip.php
    http://www.bizimle.com/dizi_diziler.php
    http://www.bizimle.com/dizi_muzikleri.php
    http://www.bizimle.com/dizi-muzikleri.php
    http://www.bizimle.com/dogum_gunu.php
    http://www.bizimle.com/dogum_gunu_davetiyeler.php
    http://www.bizimle.com/dogum_gunu_hazir_cep_mesajlari.php
    http://www.bizimle.com/dogum_gunu_kutlama_mesajlari.php
    http://www.bizimle.com/dokuzuncu-hariciye-kogusu.php
    http://www.bizimle.com/donem_odevi.php
    http://www.bizimle.com/donem-odevi.php
    http://www.bizimle.com/dost_dostluk.php
    http://www.bizimle.com/dostluk_hazir_cep_mesajlari.php
    http://www.bizimle.com/dosya_dosya_paylasimi.php
    http://www.bizimle.com/doviz_dovuz_kurlari.php
    http://www.bizimle.com/dowland-murat-kekilli.php
    http://www.bizimle.com/download.php
    http://www.bizimle.com/download-fza.php
    http://www.bizimle.com/duvar_kagitlari.php
    http://www.bizimle.com/duvar_yazilari.php
    http://www.bizimle.com/duvar_yazisi.php
    http://www.bizimle.com/duvar-kagitlari.php
    http://www.bizimle.com/duzenle.php
    http://www.bizimle.com/ebru-gundes-indir-dinle.php
    http://www.bizimle.com/edebiyatla-ilgili-komik-fikralar.php
    http://www.bizimle.com/efe-hotel.php
    http://www.bizimle.com/egitim_egitimler.php
    http://www.bizimle.com/egitim-ogretim.php
    http://www.bizimle.com/eglence_eglencelik.php
    http://www.bizimle.com/ehliyet-sinav-sonuclari.php
    http://www.bizimle.com/ekran_monitor.php
    http://www.bizimle.com/ekran_ses_kartlari.php
    http://www.bizimle.com/el_ile_yuklenen_melodiler.php
    http://www.bizimle.com/elazig_mhp_belediyesi.php
    http://www.bizimle.com/Electra_Carmen.php
    http://www.bizimle.com/elektronik-devre-cizim-programi.php
    http://www.bizimle.com/eleman_elemanlar.php
    http://www.bizimle.com/elite-turk.php
    http://www.bizimle.com/Elle-Macpherson.php
    http://www.bizimle.com/email_e-mailler.php
    http://www.bizimle.com/emekli_emeklilik.php
    http://www.bizimle.com/emlak_emlakcilar.php
    http://www.bizimle.com/ems_logo.php
    http://www.bizimle.com/en_atesli_taraftar.php
    http://www.bizimle.com/en-guzel-ask-siirleri.php
    http://www.bizimle.com/en-hizli-kosan-kus.php
    http://www.bizimle.com/en-iyi-siteler.php
    http://www.bizimle.com/ensest.php
    http://www.bizimle.com/ensest_resimleri.php
    http://www.bizimle.com/ericson-melodileri.php
    http://www.bizimle.com/ericson-samsung-cep-telefonlari.php
    http://www.bizimle.com/erkek_erkekler.php
    http://www.bizimle.com/erkek-erkekler.php
    http://www.bizimle.com/erotik_video_klipler.php
    http://www.bizimle.com/erotik-ask-ve-cinsel-arzular.php
    http://www.bizimle.com/erotik-hikayeler.php
    http://www.bizimle.com/erotik-itiraflar.php
    http://www.bizimle.com/erotik-resimler.php
    http://www.bizimle.com/erotik-resimler-bayan.php
    http://www.bizimle.com/erotizm.php
    http://www.bizimle.com/erotizm-ve-cinsellik.php
    http://www.bizimle.com/eski-antika-paralar.php
    http://www.bizimle.com/espri_espriler.php
    http://www.bizimle.com/Estella-Warren.php
    http://www.bizimle.com/etek-alti-resimleri.php
    http://www.bizimle.com/etkileyici-sozler.php
    http://www.bizimle.com/Eva-Herzigova.php
    http://www.bizimle.com/evli-kadinlar.php
    http://www.bizimle.com/evlilik-hazir-cep-mesajlari.php
    http://www.bizimle.com/ezan-ezanlar.php
    http://www.bizimle.com/f1-formala-grand.php
    http://www.bizimle.com/fal-tarot-fallari.php
    http://www.bizimle.com/fantezi-resimleri.php
    http://www.bizimle.com/fare-mause.php
    http://www.bizimle.com/felsefe-kulubu.php
    http://www.bizimle.com/felsefe-sozlugu.php
    http://www.bizimle.com/fenerbahce_hazir_cep_mesajlari.php
    http://www.bizimle.com/fenerbahce-hazir-cep-mesajlari.php
    http://www.bizimle.com/fikra-komik-fikralar.php
    http://www.bizimle.com/filiz-akin.php
    http://www.bizimle.com/film-gibi.php
    http://www.bizimle.com/fizyoloji.php
    http://www.bizimle.com/flash.php
    http://www.bizimle.com/flash_flashlar.php
    http://www.bizimle.com/flashget-1.65.php
    http://www.bizimle.com/flash-komikler.php
    http://www.bizimle.com/flash-swish-yeni.php
    http://www.bizimle.com/flort.php
    http://www.bizimle.com/flower-flowers.php
    http://www.bizimle.com/formula-1.php
    http://www.bizimle.com/forum_basvurusu.php
    http://www.bizimle.com/forum-forumlar.php
    http://www.bizimle.com/free-mp3-download.php
    http://www.bizimle.com/free-tv.php
    http://www.bizimle.com/frikik-frikikler.php
    http://www.bizimle.com/futbol-yorum.php
    http://www.bizimle.com/galatasaray-hazir-cep-mesaj.php
    http://www.bizimle.com/game_dos.php
    http://www.bizimle.com/gazeteler.php
    http://www.bizimle.com/gazeteler-gazete.php
    http://www.bizimle.com/gece-yolculari-yeni-mp3.php
    http://www.bizimle.com/gecmis_olsun_cep_mesajlari.php
    http://www.bizimle.com/gecmis-olsun-hazir-cep-mesajlari.php
    http://www.bizimle.com/gelinim-olurmusun.php
    http://www.bizimle.com/gelinlik_modelleri.php
    http://www.bizimle.com/gelinlik-modelleri.php
    http://www.bizimle.com/gem-wk1.php
    http://www.bizimle.com/gercek-muzikler.php
    http://www.bizimle.com/gerekli_siteler.php
    http://www.bizimle.com/gerekli-siteler.php
    http://www.bizimle.com/geyik_komedi.php
    http://www.bizimle.com/geyik-ve-otesi.php
    http://www.bizimle.com/gezi-geziler.php
    http://www.bizimle.com/gif-gifler.php
    http://www.bizimle.com/Gisele-Bundchen.php
    http://www.bizimle.com/giyilmesi-yasak-kisveler.php
    http://www.bizimle.com/gizli-kamera-frikik-resimleri.php
    http://www.bizimle.com/gizli-klasor-download.php
    http://www.bizimle.com/gokyuzu-neden-mavidir.php
    http://www.bizimle.com/gora-film-replikleri.php
    http://www.bizimle.com/green-card-turkiye.php
    http://www.bizimle.com/gta-kurtlar-vadisi.php
    http://www.bizimle.com/gta-vice-city-yamalar.php
    http://www.bizimle.com/gulmek-inin-nedenler.php
    http://www.bizimle.com/gunesin-sicaklik-derecesi.php
    http://www.bizimle.com/gunluk-guncel-ve%20gazete.php
    http://www.bizimle.com/guzel_sozler1.php
    http://www.bizimle.com/guzeller_galerisi.php
    http://www.bizimle.com/guzel-mesajlar.php
    http://www.bizimle.com/haber-borsa.php
    http://www.bizimle.com/haber-haberler.php
    http://www.bizimle.com/hakan-toprak.php
    http://www.bizimle.com/Halle-Berry.php
    http://www.bizimle.com/hande-yener.php
    http://www.bizimle.com/harika-avci.php
    http://www.bizimle.com/harita-haritalar.php
    http://www.bizimle.com/Harry-Potter-Prisoner-of-Azkaban.php
    http://www.bizimle.com/hasan-yasar.php
    http://www.bizimle.com/hatiralar.php
    http://www.bizimle.com/hatun-hatunlar.php
    http://www.bizimle.com/hayat-hikayeleri.php
    http://www.bizimle.com/hayir-hayir-olamaz.php
    http://www.bizimle.com/hayvan-hayvanlaralemi.php
    http://www.bizimle.com/hayvan-resimleri.php
    http://www.bizimle.com/hazir_mesajlar.php
    http://www.bizimle.com/hazir_mesajlar2.php
    http://www.bizimle.com/haziran-gecesi.php
    http://www.bizimle.com/haziran-gecesi-resimleri.php
    http://www.bizimle.com/Heidi-Klum.php
    http://www.bizimle.com/hex-renk-kodlari.php
    http://www.bizimle.com/host-hosting.php
    http://www.bizimle.com/hulya-avsar.php
    http://www.bizimle.com/hulya-avsar-resimleri.php
    http://www.bizimle.com/hz-ali.php
    http://www.bizimle.com/ibrahim-tatlises.php
    http://www.bizimle.com/iddaa_canli_maclar.php
    http://www.bizimle.com/iddaa-bahis.php
    http://www.bizimle.com/iddaa-iddaa-sonuclari.php
    http://www.bizimle.com/ilac-fiyatlari.php
    http://www.bizimle.com/ilahi-mp3ler.php
    http://www.bizimle.com/ilce-ilceler.php
    http://www.bizimle.com/ilginc.php
    http://www.bizimle.com/ilginc-ilginc_resimler.php
    http://www.bizimle.com/iliski-iliskiler.php
    http://www.bizimle.com/ilk-bulusma.php
    http://www.bizimle.com/ilk-ogretim.php
    http://www.bizimle.com/ingiliz-ingilizce.php
    http://www.bizimle.com/ingiltere-hotel-fiyatlari.php
    http://www.bizimle.com/insaat-sirketleri.php
    http://www.bizimle.com/insan-insanlar.php
    http://www.bizimle.com/inter-internet.php
    http://www.bizimle.com/internetten-para-kazanmak.php
    http://www.bizimle.com/irakta-iskence-fotograflari.php
    http://www.bizimle.com/irakta-kafa-kesme-goruntuleri.php
    http://www.bizimle.com/irmak-unal-resimleri.php
    http://www.bizimle.com/is-search.php
    http://www.bizimle.com/isimler.php
    http://www.bizimle.com/isimleri.php
    http://www.bizimle.com/islami-ilahiler.php
    http://www.bizimle.com/islam-islamiyet.php
    http://www.bizimle.com/ismail-yk.php
    http://www.bizimle.com/is-makinalari.php
    http://www.bizimle.com/istanbul_cihangir.php
    http://www.bizimle.com/italyan-yazarlar.php
    http://www.bizimle.com/itiraf_itiraflar.php
    http://www.bizimle.com/iyi_yolculuklar_hazir_cep_mesajlari.php
    http://www.bizimle.com/iyiki_ask_var.php
    http://www.bizimle.com/izmirin-doga-resimleri.php
    http://www.bizimle.com/java-javalar.php
    http://www.bizimle.com/java-sanal-makinasi.php
    http://www.bizimle.com/java-scriptler.php
    http://www.bizimle.com/Jennifer-Lopez.php
    http://www.bizimle.com/Jenny-McCarthy.php
    http://www.bizimle.com/Joshua-Malina.php
    http://www.bizimle.com/joyturk.php
    http://www.bizimle.com/kader-kaderimsin.php
    http://www.bizimle.com/kadin_moda_bakim.php
    http://www.bizimle.com/kadin-dogum-kontrolu.php
    http://www.bizimle.com/kadin-kadinlar.php
    http://www.bizimle.com/kadinlar_ve_erkekler.php
    http://www.bizimle.com/kagit-icat.php
    http://www.bizimle.com/kalp-kazanmak.php
    http://www.bizimle.com/kalp-resimleri.php
    http://www.bizimle.com/kandil_mesajlari.php
    http://www.bizimle.com/kandil-mesajlari.php
    http://www.bizimle.com/kapadokya.php
    http://www.bizimle.com/kapi_kolu.php
    http://www.bizimle.com/karadeniz.php
    http://www.bizimle.com/kara-kalem-calismalari.php
    http://www.bizimle.com/karikatur.php
    http://www.bizimle.com/kart-kartlar.php
    http://www.bizimle.com/kayahan-yeni-album.php
    http://www.bizimle.com/kaya-metal.php
    http://www.bizimle.com/kazaa.php
    http://www.bizimle.com/kazaa_lite_download.php
    http://www.bizimle.com/kendini_aska_birak.php
    http://www.bizimle.com/kilavuz.php
    http://www.bizimle.com/kirac-bedava-mp3-indir.php
    http://www.bizimle.com/kita-kitalar.php
    http://www.bizimle.com/kitapevleri.php
    http://www.bizimle.com/kizlar.php
    http://www.bizimle.com/klavye.php
    http://www.bizimle.com/klip-klipler.php
    http://www.bizimle.com/Knight_Online.php
    http://www.bizimle.com/kolejli_kizlar.php
    http://www.bizimle.com/komedi-komik.php
    http://www.bizimle.com/komik_fikralar.php
    http://www.bizimle.com/komik_flash_animasyon.php
    http://www.bizimle.com/komik_gazete.php
    http://www.bizimle.com/komik_karikaturler.php
    http://www.bizimle.com/komik_resimler.php
    http://www.bizimle.com/komik_sms.php
    http://www.bizimle.com/komik_sms_sozleri.php
    http://www.bizimle.com/komik_tv.php
    http://www.bizimle.com/komikev.php
    http://www.bizimle.com/komik-hazir-mesajlar.php
    http://www.bizimle.com/komik-siteler.php
    http://www.bizimle.com/komik-sozler.php
    http://www.bizimle.com/komik-videolar.php
    http://www.bizimle.com/konferans-duyurusu.php
    http://www.bizimle.com/korpe_kizlar.php
    http://www.bizimle.com/kpss.php
    http://www.bizimle.com/kpss-sinav-sonuclari-aciklandi.php
    http://www.bizimle.com/kredi-karti-basvurusu.php
    http://www.bizimle.com/kredi-kredikarti.php
    http://www.bizimle.com/Kultur_Sanat.php
    http://www.bizimle.com/kultur-kulturel.php
    http://www.bizimle.com/kulup-kulupler.php
    http://www.bizimle.com/kurban-bayrami-mesajlari.php
    http://www.bizimle.com/kurtlar_vadisi.php
    http://www.bizimle.com/kurtlar_vadisi_melodileri.php
    http://www.bizimle.com/kurtlar-vadisi.php
    http://www.bizimle.com/kurtlar-vadisi-melodileri.php
    http://www.bizimle.com/kurumlar-vergisi.php
    http://www.bizimle.com/kutlama_hazir_cep_mesajlari.php
    http://www.bizimle.com/kutlama-mesajlari.php
    http://www.bizimle.com/Kylie-Minogue.php
    http://www.bizimle.com/lez_lezbiyen.php
    http://www.bizimle.com/lise.php
    http://www.bizimle.com/liseler-kolejler.php
    http://www.bizimle.com/liseli_kizlar.php
    http://www.bizimle.com/liseli_kizlarin_sex_resimleri.php
    http://www.bizimle.com/liseli-dilara.php
    http://www.bizimle.com/liseli-kizlarla-sinirsiz-sohbet.php
    http://www.bizimle.com/liseli-lolitalar.php
    http://www.bizimle.com/lise-liseler.php
    http://www.bizimle.com/list-hotel-antalya.php
    http://www.bizimle.com/logomelodi.php
    http://www.bizimle.com/logo-melodi.php
    http://www.bizimle.com/love-ask-mesajlari.php
    http://www.bizimle.com/mac_maclar.php
    http://www.bizimle.com/mac-maclar.php
    http://www.bizimle.com/magazin.php
    http://www.bizimle.com/mailturk.php
    http://www.bizimle.com/maket-otomobil.php
    http://www.bizimle.com/mani-mesajlari.php
    http://www.bizimle.com/manken-frikikleri.php
    http://www.bizimle.com/mankenler.php
    http://www.bizimle.com/manzaralar.php
    http://www.bizimle.com/manzara-resimleri.php
    http://www.bizimle.com/maria-sharapova.php
    http://www.bizimle.com/mario-oyunu.php
    http://www.bizimle.com/markalar.php
    http://www.bizimle.com/meb-lise-ilkokul.php
    http://www.bizimle.com/medya.php
    http://www.bizimle.com/mehmet-ali-nuroglu.php
    http://www.bizimle.com/memurlar.php
    http://www.bizimle.com/mesaj-at.php
    http://www.bizimle.com/messenger-hata.php
    http://www.bizimle.com/midi-midiler.php
    http://www.bizimle.com/milli-piyango.php
    http://www.bizimle.com/mirc-reklam-botu.php
    http://www.bizimle.com/mirc-scriptler.php
    http://www.bizimle.com/misrosoft-front-pages-2003.php
    http://www.bizimle.com/mobilya.php
    http://www.bizimle.com/modem-adsl.php
    http://www.bizimle.com/modem-modemler.php
    http://www.bizimle.com/modifiye.php
    http://www.bizimle.com/monica-bellucci.php
    http://www.bizimle.com/motorlu_tasitlar.php
    http://www.bizimle.com/motor-motorsiklet.php
    http://www.bizimle.com/motorola_cep_telefonu_modelleri.php
    http://www.bizimle.com/mp3-mp3ler.php
    http://www.bizimle.com/msn-arkadas.php
    http://www.bizimle.com/msn-arkadaslik-siteleri.php
    http://www.bizimle.com/msn-messenger.php
    http://www.bizimle.com/muhabbet.php
    http://www.bizimle.com/muhasebe-elemanlari.php
    http://www.bizimle.com/murat-gogebakan.php
    http://www.bizimle.com/muslum-gurses.php
    http://www.bizimle.com/mustafa_kemal_ataturk.php
    http://www.bizimle.com/mustafa-sandal.php
    http://www.bizimle.com/mutfak.php
    http://www.bizimle.com/muzik.php
    http://www.bizimle.com/muzik_yeni_albumler.php
    http://www.bizimle.com/muzik-sistemleri.php
    http://www.bizimle.com/muzik-siteleri.php
    http://www.bizimle.com/nokia-wav.php
    http://www.bizimle.com/nasil-oynanir.php
    http://www.bizimle.com/natalia-nataly.php
    http://www.bizimle.com/nazan-oncal-mp3leri.php
    http://www.bizimle.com/naz-elmas-resimleri.php
    http://www.bizimle.com/need-for-speed-underground.php
    http://www.bizimle.com/nefret-mesajlari.php
    http://www.bizimle.com/nez-frikikleri.php
    http://www.bizimle.com/noel-dayi.php
    http://www.bizimle.com/nokia_cep_telefonu_modelleri.php
    http://www.bizimle.com/nokia_melodileri.php
    http://www.bizimle.com/nokia-cep-telefonlari.php
    http://www.bizimle.com/nokia-oyunlari.php
    http://www.bizimle.com/norton-antivirus.php
    http://www.bizimle.com/nostaji-mp3.php
    http://www.bizimle.com/numara.php
    http://www.bizimle.com/numaralar.php
    http://www.bizimle.com/oflu-hoca.php
    http://www.bizimle.com/ogrenci.php
    http://www.bizimle.com/ogretmen1.php
    http://www.bizimle.com/ogretmenler.php
    http://www.bizimle.com/okey-oyunu.php
    http://www.bizimle.com/okullar.php
    http://www.bizimle.com/online_bahis.php
    http://www.bizimle.com/online_muzik-dinle.php
    http://www.bizimle.com/online_oyunlar.php
    http://www.bizimle.com/online-muzik.dinle.php
    http://www.bizimle.com/opusmek.php
    http://www.bizimle.com/ordu-resimleri.php
    http://www.bizimle.com/Orospu-MaNKeNLeR.php
    http://www.bizimle.com/oss.php
    http://www.bizimle.com/osym-sonuclari.php
    http://www.bizimle.com/otel-hoteller.php
    http://www.bizimle.com/oto-lastik-resimleri.php
    http://www.bizimle.com/otomobil-araba.php
    http://www.bizimle.com/otomobil-resimleri.php
    http://www.bizimle.com/oyun_hileleri.php
    http://www.bizimle.com/oyun-hileleri.php
    http://www.bizimle.com/oyun-oyunlar.php
    http://www.bizimle.com/oyun-siteleri.php
    http://www.bizimle.com/ozge-ozberk-resimleri.php
    http://www.bizimle.com/ozlem-mesajlari.php
    http://www.bizimle.com/ozlem-ozlemek.php
    http://www.bizimle.com/ozlu-mesajlar.php
    http://www.bizimle.com/ozur_mesajlari.php
    http://www.bizimle.com/ozur-mesajlari.php
    http://www.bizimle.com/Pamela-Anderson.php
    http://www.bizimle.com/paparazi_magazin.php
    http://www.bizimle.com/pc-computer.php
    http://www.bizimle.com/pekiyi.php
    http://www.bizimle.com/pembesayfa.php
    http://www.bizimle.com/Penelope-Cruz.php
    http://www.bizimle.com/penis-rahatsizliklari.php
    http://www.bizimle.com/php-scriptler.php
    http://www.bizimle.com/pinar-kurkut.php
    http://www.bizimle.com/plan-planlar.php
    http://www.bizimle.com/platonik-ask.php
    http://www.bizimle.com/playboy-kizlari.php
    http://www.bizimle.com/polifonik-melodi.php
    http://www.bizimle.com/Porno-Sex.php
    http://www.bizimle.com/posta-kodlari.php
    http://www.bizimle.com/program_download.php
    http://www.bizimle.com/program-arsivi.php
    http://www.bizimle.com/psikiyatri.php
    http://www.bizimle.com/pusulayi-kim-icat-etti.php
    http://www.bizimle.com/radyo-dinle.php
    http://www.bizimle.com/ramazan-bayrami-mesajlari.php
    http://www.bizimle.com/rejim-diyet.php
    http://www.bizimle.com/renkli-animasyon.php
    http://www.bizimle.com/renkli-logo.php
    http://www.bizimle.com/renkli-resimli-mesajlar.php
    http://www.bizimle.com/resimler.php
    http://www.bizimle.com/resimli-mesajlar.php
    http://www.bizimle.com/rize-artvin.php
    http://www.bizimle.com/rus-hackerlar.php
    http://www.bizimle.com/ruya.php
    http://www.bizimle.com/ruya-tabirleri.php
    http://www.bizimle.com/ruya-yorumlari.php
    http://www.bizimle.com/sadece-sex.php
    http://www.bizimle.com/safranbolu.php
    http://www.bizimle.com/saglikli-beslenme.php
    http://www.bizimle.com/Sagopa-Kajmer.php
    http://www.bizimle.com/sahibinden-kiralik-daireler.php
    http://www.bizimle.com/sahin-mgp.php
    http://www.bizimle.com/sair-sairler.php
    http://www.bizimle.com/saka-sakalar.php
    http://www.bizimle.com/samsung_cep_telefonu_modelleri.php
    http://www.bizimle.com/sanal-sex.php
    http://www.bizimle.com/sanat-sanatlar.php
    http://www.bizimle.com/sanayi-rehberi.php
    http://www.bizimle.com/Sandra-Bullock.php
    http://www.bizimle.com/sans-oyunlari.php
    http://www.bizimle.com/sari-yildiz.php
    http://www.bizimle.com/sans_dilekleri_hazir_cep_mesajlari.php
    http://www.bizimle.com/sarkicilar.php
    http://www.bizimle.com/sarki-mesajlari.php
    http://www.bizimle.com/sarkisozu.php
    http://www.bizimle.com/satilik-turkcell-hat.php
    http://www.bizimle.com/sayfa-yukleniyor.php
    http://www.bizimle.com/sayisal-loto.php
    http://www.bizimle.com/script_scriptler.php
    http://www.bizimle.com/seda-sayan-parcalari.php
    http://www.bizimle.com/sehir-sehirler.php
    http://www.bizimle.com/seks-hikayeleri.php
    http://www.bizimle.com/semra-hanim.php
    http://www.bizimle.com/seray-sever.php
    http://www.bizimle.com/seslichat.php
    http://www.bizimle.com/sesli-chat.php
    http://www.bizimle.com/Seslisohbet.php
    http://www.bizimle.com/sesli-sozluk.php
    http://www.bizimle.com/sevda-karababa.php
    http://www.bizimle.com/sevgi_forum.php
    http://www.bizimle.com/sevgi_mesajlari.php
    http://www.bizimle.com/sevgi_sevgiliye.php
    http://www.bizimle.com/sevgi_siirleri.php
    http://www.bizimle.com/sevgi_sozleri.php
    http://www.bizimle.com/sevgili_ne_arar.php
    http://www.bizimle.com/sevgililer_gunu.php
    http://www.bizimle.com/sevgiliye-mesajlar.php
    http://www.bizimle.com/sevgi-mesajlari.php
    http://www.bizimle.com/sevgi-sevgili.php
    http://www.bizimle.com/sevgiye-ve-aska-dair.php
    http://www.bizimle.com/sex_hatiralari.php
    http://www.bizimle.com/sex_hikayeleri.php
    http://www.bizimle.com/sex-arkadasiniz-cevriye.php
    http://www.bizimle.com/sex-filmi.php
    http://www.bizimle.com/sexhikayeleri.php
    http://www.bizimle.com/sex-partner.php
    http://www.bizimle.com/seyahat.php
    http://www.bizimle.com/sezen-aksu.php
    http://www.bizimle.com/showtv_ikinci_bahar.php
    http://www.bizimle.com/showtv-frekans.php
    http://www.bizimle.com/sibel_can_resimleri.php
    http://www.bizimle.com/sibel-Can.php
    http://www.bizimle.com/Sibel-Kekilli.php
    http://www.bizimle.com/siemens_cep_telefonu_modelleri.php
    http://www.bizimle.com/sifali_bitkiler.php
    http://www.bizimle.com/sifre-kirici.php
    http://www.bizimle.com/siir-siirler.php
    http://www.bizimle.com/Sima-Karatar.php
    http://www.bizimle.com/simens.php
    http://www.bizimle.com/sinav.php
    http://www.bizimle.com/sinav-sorulari.php
    http://www.bizimle.com/sinema.php
    http://www.bizimle.com/sinema-sinemalar.php
    http://www.bizimle.com/siyaset-siteleri.php
    http://www.bizimle.com/sms.php
    http://www.bizimle.com/sms_mesajlari.php
    http://www.bizimle.com/sohbet_aski.php
    http://www.bizimle.com/sohbetodalari.php
    http://www.bizimle.com/sohbetodasi.php
    http://www.bizimle.com/son-dakika-haber.php
    http://www.bizimle.com/son-dakika-spor.php
    http://www.bizimle.com/Sony_Ericsson_cep_telefonu_modelleri.php
    http://www.bizimle.com/sorular.php
    http://www.bizimle.com/sozluk.php
    http://www.bizimle.com/sp2-kurulum-hatasi-lisansli.php
    http://www.bizimle.com/spor_mesajlari.php
    http://www.bizimle.com/sporcu.php
    http://www.bizimle.com/spor-sporlar.php
    http://www.bizimle.com/sports.php
    http://www.bizimle.com/ssk_hizmet_dokumu.php
    http://www.bizimle.com/ssk-emekli.php
    http://www.bizimle.com/SSK-Hizmet-Dokumu.php
    http://www.bizimle.com/supermp3.php
    http://www.bizimle.com/superonline.php

  173.   #173 Comment Posted by mirc on Oct 18, 10:54 AM

    thanks
    best regards.

  174.   #174 Comment Posted by Radio on Oct 19, 04:34 AM

    Nice article.

  175.   #175 Comment Posted by MCportal.pl Katalog stron on Oct 19, 04:35 AM

    Nice article and very fantastic helpful site.

  176.   #176 Comment Posted by Opisy gg on Oct 19, 04:36 AM

    Good art

  177.   #177 Comment Posted by chat on Oct 21, 02:39 PM

    thanks you

  178.   #178 Comment Posted by youtube on Oct 21, 05:21 PM

    thankss…is veryy good!

  179. hellooww,,good

  180. us unredgraund

  181.   #181 Comment Posted by chat odaları , sohbet odaları , mavi sohbet on Oct 21, 05:32 PM

    thankss…is very good…us unredgraund

  182.   #182 Comment Posted by ç™½é‡‘ デリヘル on Oct 22, 04:58 AM

    thanks you

  183.   #183 Comment Posted by äº”å??ç”° デリヘル on Oct 22, 05:00 AM

    thanks you

  184.   #184 Comment Posted by fal on Oct 23, 05:27 AM

    ı like this site.

  185.   #185 Comment Posted by gazeteler on Oct 23, 05:30 AM

    very good site.

  186.   #186 Comment Posted by youtube on Oct 23, 05:33 AM

    good infomation

  187. Love a you blog

  188.   #188 Comment Posted by rbuvleqp on Oct 24, 02:18 PM

    K5FtH7 nhqnxzxyxwip, [url=http://lcmbguadkuht.com/]lcmbguadkuht[/url], [link=http://kktfmgmazaww.com/]kktfmgmazaww[/link], http://ejwmnrqkhyhp.com/

  189.   #189 Comment Posted by Demens on Oct 24, 03:52 PM

    per scaricare foto da cellulare , foto superdotati gratis , tatuaggio disegni immagini foto , foto superdotati gratis , universita fotografia , 275 foto venezia , it professione fotografo , tatuaggio disegni immagini foto , foto chiappe, foto superdotati gratis , it professione fotografo , tatuaggio disegni immagini foto , foto squadra napoli , foto superdotati gratis , foto superdotati gratis ,

  190.   #190 Comment Posted by Hyttep on Oct 24, 04:57 PM

    foto porno sesso estremo animale , fiori fotografie , album foto alice it , foto porno sesso estremo animale , foto piede vip , fiori fotografie , foto ragazza pelosa gratis , piu bella foto paesaggio , foto camera ottiche kodak , foto topless amatoriale , foto aerea parma , bella figa vogliosa foto gratis , foto ragazza pelosa gratis , foto sesso con cavalli , bella figa vogliosa foto gratis ,

  191.   #191 Comment Posted by Oppers on Oct 24, 05:35 PM

    fototifo it , wallpaper foto, foto gratis pompino tettona sborrata , fototifo it , venezia fotografia , claudia antonelli foto , claudia antonelli foto , foto di como , annuncio coppia foto , foto hello kitty , annuncio coppia foto , claudia antonelli foto , cazzo enormi foto gratis , claudia antonelli foto , foto fiat uno ,

  192.   #192 Comment Posted by Olia on Oct 24, 09:53 PM

    foto sampdoria roma , praga viaggio foto, ariel bunny melodey foto lesbica gratis , foto loredana damato , foto roberta giarrusso , album fotografico foto matrimonio , foto donna strane , foto unghia rossa , foto unghia rossa , album fotografico foto matrimonio , siracusa foto , praga viaggio foto, foto sampdoria roma , foto loredana damato , foto unghia rossa ,

  193.   #193 Comment Posted by Fall on Oct 25, 12:08 AM

    fotografia d amore , foto daniele interrante , www album foto virgilio it , foto donna porca amatoriale , foto donna bella , foto gatti persiani , mp4 foto , foto angelina jolie nuda , foto asia argento porno star , foto donna porca amatoriale , ana caterina morariu foto , foto angelina jolie nuda , foto angelina jolie nuda , foto angelina jolie nuda , foto di fighe nude ,

  194.   #194 Comment Posted by Xerrop on Oct 25, 12:57 AM

    foto mastoplastica , foto carra , foto invia , foto labbra , foto fontana di trevi , foto amatoriale donne , foto piedi amatoriali , foto carra , foto piedi amatoriali , pete doherty foto, foto mamma amica , federica foto zarri , foto fontana di trevi , foto amatoriale donne , foto amatoriale donne ,

  195.   #195 Comment Posted by Berrip on Oct 25, 01:42 AM

    fotocopiatrice stampante scanner , foto oscar gutierrez , fotocopiatrice stampante scanner , foto oscar gutierrez , foto simone tomassini dolce nera , foto vedere scaricare lesbica , foto piede sex collant , free foto porno , agenzie fotomodelli , ragazzi nudi foto , foto transessuale piemonte , foto simone tomassini dolce nera , foto ricky martin giovanissimo , giovani troie foto, il foto amatore ,

  196.   #196 Comment Posted by jonn3 on Oct 25, 02:15 AM

    fotocamera digitale subacquea , foto porno feet fetish gratis , foto fiore calle , foto autoreggenti , foto porno feet fetish gratis , foto modella tiziana re it , sito gratis ragazzo gay sex foto , foto modella tiziana re it , clitoride enorme freefoto , trovare foto , foto autoreggenti , trovare foto , fotografare i quadri , montaggio foto dvd , foto annuncio roma ,

  197.   #197 Comment Posted by Britney on Oct 25, 06:03 AM

    antonella clerici foto , foto fernando vitale , dolci foto, foto di bali , foto sfilata intimo , antonella clerici foto , foto sesso casalinghe , vecchia porca cinquantenne foto amatoriale , foto fernando vitale , foto sfilata intimo , dolci foto, foto di bali , dolci foto, nuova macchina fotografica , foto spazio ,

  198.   #198 Comment Posted by Helga on Oct 25, 06:53 AM

    foto di big , foto di piedi nudi , foto di piedi nudi , programma fotomontaggio download , cellulare nokia foto camera , foto annuncio liguria , foto di piedi nudi , foto lavoro multidisciplinare , foto cuori , carta fotografica rotolo , foto annuncio brescia , foto sexy sex moglie , ragazza vergine foto , foto lavoro multidisciplinare , ragazza vergine foto ,

  199.   #199 Comment Posted by Mellisa on Oct 25, 07:46 AM

    cuba foto , fotografia campagna stampa quotidiano nazionale audi , foto mamma e figlia , foto mamma e figlia , fotografia finale champion league 2003 , foto x desktop , fotografia campagna stampa quotidiano nazionale audi , foto x desktop , benito mussolini foto , foto sette nano , foto annuncio gratis scambista coppia , foto neonato prematuri , album fotografico tool gratis , lucia foto, foto neonato prematuri ,

  200.   #200 Comment Posted by tv izle on Oct 25, 02:59 PM

    thank you very good team cuta foto low