Better-Than-Live AJAX (WordPress-Ready) Search, Version 2
Just a little less than a year ago I launched Better-Than-Live AJAX WordPress Search. I felt it was time to get back in the swing of things, so I’m now releasing version 2 of the script.
Download
You can download the files here.
The included files are: prototype.js, effects.js, search.js, search.php, and README.txt.
If you used the previous version of the script, you probably don’t need to read much further to figure it out, though I’d recommend that you do it anyway.
What’s new?
There are a few main changes:
- Uses private variables instead of forcing you to search through the whole script to configure things.
- Works around your already-built search form rather than making you code around the script.
- Checks for multiple searches in a row and closes the previous results before starting the next search.
This makes it much easier to set up, and it’s quite easy to use with your own back-end (unlike what some thought with with the previous version, this script will work with any sort of custom back-end search. It is, however, configured for WordPress by default and comes with a pre-made search file.)
How to set it all up.
Lines 19-26 contain all the necessary variables and look something like this:
var form = 'search'; // id of your search form
var input = 'search_input'; // id of your search input field
var results = 'searchresults'; // id of your results div/paragraph/whatever
var x = 'closeresults'; // id of the button/link to close the results
var submit = 'searchsubmit'; // id of the submit button
var sText = 'Better-than-live search.'; // Default value for your search input field. This is for the automatic clearing of the field onClick.
var iUrl = '/indicator.gif'; // url of indicator image
var file = '/index.php'; // url of the backend file doing the actual searching. If using WordPress, there's a 99% chance you should this leave as-is.
Should be fairly straight forward. This makes it much easier to set up, and unlike before, you can now integrate this script with your own search form by simply plugging the IDs into the script. (Note to those updating from version 1: The default values for the form are the same as was required in the previous version, so you should not need to change any of these unless you personally customized the script.)
If you’re using WordPress, I’d advise opening up search.php and replacing yourpath in line three with the path to your WordPress directory. If you already have a search.php in your current theme directory, save and/or rename it (in case you want it back) before uploading the search.php file that game with the Better-Than-Live download to the directory (Note to those updating from version 1: There has been no update to search.php, so there is no need to mess with or change your current file. You can skip this step.)
If you are using a back-end other than WordPress, you will need to create your own file to do the actual searching of the database(s) and return the results. Then simply define the file variable as the path to your search file, and you should be set.
When including the JavaScript files, make sure that prototpype.js is first, effects.js is second, and search.js is last. If you have them in the wrong order, the script will not work as some of these files are dependent on previous ones.
Also note that just like in the first version of this script, the activity indicator image will have an ID of indicator-safari in Safari and just indicator in non-Safari browsers. This is because in some versions of Safari the form elements cannot be altered as much, so you may want to position the indicator differently.
So enjoy, I’d love to see how you use it, and if you have any questions you can drop ‘em in the comments. 












Pretty cool, E. I like how you’re actively updating this.
I’ll be checking this out.
Brilliant, i will try it out!
Thanks.
Hi Eliot Swan,
The search form looks wonderful. I’d love to implement it on the website I’m putting together at http://www.vancouverpoetryhouse/blog/. But I have only the most basic understanding of code, and website programming.
Could you please make an “installation for dummies” in step form?
These are the obvious sort of questions that dummies like myself need answered:
1. Which directories do I put files in? The theme directory? The plug-in directory?
2. Which variables must I fill in to get the search form to work?
3. How do I implement the search form? As a widget? Or can I insert code into the header to make it appear there?
Thanks for developing a great search function. It is far better than any of the live search plug-ins. Good work!
Are there any live examples/demos? Thanks in advance for this!
Thanks Andy, you make Ajax seem easy .. even though I know (just speaking for myself here) it is not
Yes, a demo would be nice…
I’m using it on my blog!
This blog is using a modified version (no submit button), and I have it running at Accidental Procrastination.
Someone had written a step-by-step guide to the previous version of this plug-in. This guide is gone. If anyone has time to post a better-than-live-AJAX guide, it would be much appreciated. The implementation of this plug-in is not fairly straightforward to me.
http://www.elliotswan.com/2006/07/05/better-than-live/
Tutorial for the previous version.
Looks like the search is kind of broken now, no fancy Java Script.
But I am still not able to make it work on my site, a simple write up will be great.
-
mp3 cheap legal download download legal cheap mp3
This is my first post
just saying HI
Hello,
I’m loving the demo at the top of this page and am very interesting in installing this search system on one of my web sites. However, what would be fantastic is if the search could bring up a certain image with each text result that is found. For example:
I search for ‘gardening’ and the result arrives with an image relating to that page.
Would this be possible at all?
Thanks again,
had it working like a charm with prototype v1.5.0_rc0 (thanks for your work, Elliot), but can anyone else confirm you just get a recursion loop if you try and use it with later versions of prototype?
(1.5.1.1, line 1323)
thanks
[...] Elliot Swan放出了第二版的Better Than Live AJAX Search.对易用性做了很大的改进,变量赋值给提取了出来,安装应用到wordpress将更简单,可定制性更强. [...]
Want to start your private office arms race right now?
I just got my own USB rocket launcher
Awsome thing.
Plug into your computer and you got a remote controlled office missile launcher with 360 degrees horizontal and 45 degree vertival rotation with a range of more than 6 meters – which gives you a coverage of 113 square meters round your workplace.
You can get the gadget here: http://tinyurl.com/2qul3c
Check out the video they have on the page.
Cheers
Marko Fando
I’ve got an Amazon gift certificate burning holes in my pocket,
and I want to get the most bang for my buck.
Enter the Secret Amazon Web Pages:
http://tinyurl.com/38sojf
This is where you’re going to find the “latest sales, rebates, and limited-time offers” from
Amazon, and you can score some pretty deep discounts if you’re a savvy shopper.
Next, there’s the special Sale link. This is open every Friday, and ONLY on Fridays.
You can find the same good discounts here as you would in hidden Deals, although some
Fridays you can really get lucky and make off like an Amazon bandit – I’ve seen discounts
there as low as 75% off sticker price.
Hi Elliot. Wonderful script you’ve created. I’ve been tinkering with it for a while now, integrating it into a site I’m working on. And it works like a charm, even for a non-guru like myself.
One bug I noticed occurs if the search is submitted with a blank string. The entire page gets spit back out into the results DIV. A weird doubling thing happens.
Is there an easy way to check for this condition (an empty search input) before submission, and then bypass an actual search?
Thanks again for sharing your work.
-mongushu
1. Which directories do I put files in? The theme directory? The plug-in directory?
2. Which variables must I fill in to get the search form to work?
3. How do I implement the search form? As a widget? Or can I insert code into the header to make it appear there?
As Faust said, there is painfully little documentation here! Which is sad, because this is a great plug-in. Kind of useless though, if it can’t be gotten to work. I don’t even know where to begin.
[...] Sökmotor: Jag har definitvt planerat att lägga till en ajax-baserad sökmotor, eftersom den som finns nu är väldigt undermålig. Att kunna söka på bloggen är ju faktiskt en viktig funktion. Den sökmotor jag har i tankarna är Better-than-live som tyvärr saknar bra dokumentation. Har e-postat Elliot Swan om saken så får väl se om han svarar och har något konstruktivt att komma med. Det är i alla fall en väldigt snygg och funktionell widget! [...]
[...] Better-Than-Live AJAX WordPress Search v2: Günlüğünüzde AJAX ile hızlı aramalar yapmanızı sağlayan bir eklenti. [...]
I have been testing this plugin on the blog I’m making now, but I can’t get it to show more than one result in the search!
Is there anystring I need to modify to show more than one result?
the link to my blog is eoqha.net/podcast
[...] I also spent sometime playing with AJAXed WP and Better-Than-Live AJAX Search. While they’re really cool, they don’t offer the same level of user friendliness. In order to make the two plugins work I had to mess around with the theme, which make ‘em not so portable and may potentially break in the future releases of Wordpress. [...]
I’m having a hard time putting the close button inside the div#searchresults. I notice that the Event.observe(x, ‘click’, this.close, false) is giving me a hard time if the a#closeresults is not there right at the begining. My intention was to triggered it via the search.php output, since putting it in the hidden div#searchresults by default destroys it once the search appear.
I tried to move the Event.observe line from the init: instance to the end of the complete: instance, and it doesn’t work either.
I don’t get why you would want the close button to be outside the search box by default, it doesn’t makes much sense to me as everything else, popups and windows, generally has their close button inside them…
Help?
[...] Better-Than-Live AJAX WordPress Search v2: Günlüğünüzde AJAX ile hızlı aramalar yapmanızı sağlayan bir eklenti. [...]
Oh, and did not know about it. Thanks for the information …
Yeah, what I did was something similar to what you have done on your own blog, but I am putting the close link and the searchresults hidden div in an empty div that will act as the background of the search section… it works!
Thanks for your efforts for that plugin, much appreciated…
[...] Better-Than-Live AJAX WordPress Search v2 “Just a little less than a year ago I launched Better-Than-Live AJAX WordPress Search. I felt it was time to get back in the swing of things, so I’m now releasing version 2 of the script.” [...]
Hi there mate,
does this WorPress ready means that it only works for wordpress, or can i integrate it into a normal php site also?
@Gerben: It will work for any php site with search, it’s just set by default to work for WordPress. If you look in the article, it shows a few lines with variables that you can set–one of these is for the location of the file doing the searching. I’ve included one for WordPress, but you can change it to use whatever you’d like.
okay thanks for the quick response
were trying to get this to work with code igniter but it wont work..
any experience on this?
I don’t… Just make sure that the search file is actually returning the results, because whatever the search file returns when it is done is what the script will show via the ajax.
okido, well give that a try
BTW,
this is our code:
in head:
js/prototype.js" type="text/javascript">
js/effects.js" type="text/javascript">
js/swfobject.js" type="text/javascript">
the form:
/zoeken/" id="search">
and the div where results will come:
will it work like this when ive specified the correct search php file in the JS?
Thx,
G
the comment above is kind of !@!@ up
like this then:
js/prototype.js” type=”text/javascript”>
js/effects.js” type=”text/javascript”>
js/swfobject.js” type=”text/javascript”>
/zoeken/” id=”search”>
all of course in the right places in the template
just mailed you, the comment code doesnt show all..
[...] Better-Than-Live AJAX WordPress Search v2 “Just a little less than a year ago I launched Better-Than-Live AJAX WordPress Search. I felt it was time to get back in the swing of things, so I’m now releasing version 2 of the script.” [...]
I removed the include(“yourpath/wp-blog-header.php”); line, because I wanted to show results on the sidebar.
Okey, I was found the solution: simply specify the full path (xy.com/js/effect.js) of js files in header.php.
[...] Better Than Live WordPress Search – Adicione uma busca no seu Wordpress utilizando animações e efeitos em Ajax. [...]
Why aren’t simple questions like “where do we put the files” being answered?
It seems only programmers can use this which is a real shame.
A real shame? Are you serious? This whole thing, the whole coding behind Better-Than-Live AJAX is a shame because you need to know how WordPress themes works and basic PHP and file structure?
Wow…
You didn’t read what I wrote did you?
Funny, you took the time to write that but not answer the question I and others have.
I answered; if you don’t know the basics of WordPress filestructure, I don’t think that this for you… You can put the files wherever you want; you’ll need to link to them using the adequate coding for javascripts in the header of your website. Should I be more specific?
Thank you.
I can get it to preform a search but it sends me to a new page to view the results.
@Me: If you’re going to troll, please at least use a real name and email address.
Laurent is correct, this is not a plugin, so some know-how is required to get it running. Your problem actually has been solved and documented quite thoroughly, however. A simple search through the comments on this post and the other one that should have been linked to several times I believe, and you should find your solution quite quickly.
Thanks for trying it out!
No need call me names, I’m just looking for some help. I’m not alone as a few people have asked for a Dummys step by step guide.
Which one do we use? http://www.elliotswan.com/2006/07/05/better-than-live/ or the one on this page?
I’ve tried both and neither work for me.
Maybe I’m not using the right version of wordpress (2.1)
I don’t give out my real email address because of spam bots but I will email it to you if you need it.
I forgot to say that I don’t expect free help here, I don’t mind paying for your help.
Wasn’t trying to call names, simply point out that it’s common curtsey to at least use a real name when criticizing others’ work, otherwise it looks like you have no purpose in doing so. As far as email addresses go, most blogs (especially wordpress ones) don’t publish them, so spam bots is shouldn’t need to be a concern–email addresses simply add credibility to your post.
The script on this page is the more recent one, so you’ll want to use this one. When people experience the problem you’re having, normally it’s because prototype.js/effects.js isn’t being pulled before the search script. I sent you to the other page and suggested reading through the comments because this has been mentioned thoroughly in them, and at least one other person has written an article on specifically how to solve your problem–an article that you should be able to find by checking those comments.
Or did you try that and it still doesn’t work? We also can’t really help any further than this without a link.
Ty…….
Hello & thanks for sharing this plugin.
I followed the necessary steps (i think) but still i don`t get the search to work at all.
When i perform a search for the word “alley” f.ex i get this url, “ahjaa” being my root folder with the wp installation in it: http://localhost/ahjaa/%3C?s=alley
Where could the mistake be?
i could also upload it to make it more clear…
if anyone could help… would be much appreciated.
i read all comments and looked for more documentation but there is none,
previously posted links to more information are dead.
Thank you!
just subscribing to follow up posts here…
Some more information:
Trying to install on Version 2.5.
I copied all files that came with the better-than-live-v2.zip into my theme folder (= wp-content/themes/xyz/) and then altered them there.
1. “First, we of course need to get ourselves a form” —-> The necessary searchform is inserted into a widgetized sidebar using the “text” widget.
2. “We’ll also need a div to show the results in” —-> I did that !
3. “For that nifty little close button, we need our close link” —-> I did that !
4. (inside search.php): “replace yourpath to header.php” —- I did that, this is my path now: http://localhost/ahjaa/wp-blog-header.php
From what i understand this should already produce a working search right?
I really hope someone can draw some conclusions from the URL that is produced when performing the search (see my other post above).
Again: Thanks for any help!
Hi there, I’m trying this clean search script in Paris Na Linha (still in beta).
In Safari & Firefox everything’s ok (I still need some css redesign)
In IE6, the search leads to http://www.parisnalinha.com/index.php?s=my+search
Any idea of what’s wrong ?
brilliant code, thanks for sharing, i love them!
I share Me’s confusion. This is absolutely the best search box I’ve seen, but coming in as an average Wordpress user I am used to a standardized plugin installation explanation, and was lost until I got deep into the comments on the second version page. I think the confusion comes from the fact that you wrote for one audience, but there’s this other plugin audience out there wandering in and trying to use your code. (I put all the files in my plugin directory and looked for a new menu to appear … don’t laugh, I use Wordpress as a simple tool to do what I love to do, which is not javascript).
If you made this for people more advanced than me, then ok. But if you want non-coding people to use it (and link to it, and donate for it), all we need is something like:
step 1: open file.js and change lines 24-33 in this way.
step 2: upload to wordpress/theme.
step 3: in styles.css create a or whatever.
thanks for your work.
awesome…
hmm hopefully comments rae moderated and my gigantic comment didnt just get eaten. I should click that “notify” box while I am at it, though..
Thanks For Plugin.
Hey Elliot…
I wrote a comment up here about a year ago. Never got an answer
. Now I’m back, using your kick-ass live search script once again, and have run into the same issue as last time. I came here searching for a fix and found, to my surprise, my own comment here asking for a fix from 10/07.
If a search field with an empty string is submitted, the search script returns the entire webpage back in to my results div. I tried to check for and empty $_POST['s'] variable in my search.php file and then spit out a warning, but this doesn’t catch the bug in time. I still get the doubled page.
ANy ideas?
@mongushu:
It’s a bug that would need to be fixed in a future version. A possible solution would be to replace line 83 of search.js with:
Note that this has not been tested, but something similar to this should do the trick.
It could be cool as hell to get a “View the next 10 results” link at the bottom of the div#searchresults. Just a thought…
I think I did something clever, and wanted to share with you guys…
if (basename(urldecode($_SERVER['REQUEST_URI'])) == "index.php") {
BETTER-THAN-AJAX SEARCH.PHP CODE
} else {
NORMAL PAGE CODE
}
If you include this in your search.php file, you will be able to get both your Live Search and a normal page search (which allows you to navigate to multiple pages). I’ve simply included text in the Live Search linking to the normal search for more results.
@Laurent: Interesting. Do you have a live example somewhere?
I rather not post it yet; I really hope to release the new version of my (french) blog next week, and it’s working from here… ;oP
Gotcha. Make sure to post a link for us once you’ve got it live!
Nice Plugin… thanks
Оценка 5!
Sorry Elliot, I’ve become more and more interested in jQuery lately, and I have successfully been able to do something similar under this framework (~69kb vs. ~160kb for Prototype / Scriptaculous). I don’t consider myself a javascript coder per se, but here’s what I come up with :
$(document).ready(function() {
//submit the form and return results of form submission to target class div
var options = {
target: "#searchzone", // target element(s) to be updated with server response
success: function() {
$("#searchzone").slideDown();
$("#indicator").animate({ opacity: "0" });
}
};
// bind to the form's submit event
$("#searchform").submit(function() {
$("#indicator").animate({ opacity: "1" });
$("#searchzone").slideUp();
// inside event callbacks 'this' is the DOM element so we first
// wrap it in a jQuery object and then invoke ajaxSubmit
$(this).ajaxSubmit(options);
// !!! Important !!!
// always return false to prevent standard browser submit and page navigation
return false;
});
}
);
That’s all I need, and it does roughly the same thing as yours in my context. All you need is jQuery’s core and the jQuery.form plugin.
Obviously, #searchzone is the div where the results are shown, #indicator is the “Please wait…” span (I don’t like animated gifs) and #searchform is the ID of the form.
Now the hack I was suggesting below, to allow WordPress to display a “light” search on AJAX and a “complete” search afterwards DOESN’T WORK UNDER THESE CONDITIONS. So I need to come up with something else..
Thank’s!
Thanks For Plugin.
Hey dude! Great work!
Do you ever think about making a jQuery version of it?
Actually I have. Haven’t gotten around to it yet, but it’s a possible thing of the future.
This is a dead smart script. The demo looks fantastic and it’s much better than live without a doubt. A link back when I implement it in one of my sites
Keep on codin’ (“;)
plugin is very goood…..
york insurance life company reliastar insurance life company reliastar york
Just uploaded the files to my blog, the search part seems to work but it’s not coming up with the really cool ajax effect. My search results are coming up on a new page load…any tips? Thanks. Will keep trying though.
@Rawr: Make sure the better-than-live script is included *after* the prototype script, otherwise it won’t run correctly. That seems to be the most common reason for that problem.
Also, I have actually re-written this script to run as a jQuery plugin for my redesign, and that will also eventually be released so keep a lookout for that.
Pretty cool
Very nice Elliot! Checking it out now!
Ничего если я здесь напишу
Хорошо
Sign: fxnmz Hello!!! bvkxf and 3517emacsztckb and 979 : I love your blog.
I just came across your blog.
Very nice im going to download it and test it in a 2 or 3 web sites
[...] Better-Than-Live AJAX WordPress Search v2: Günlüğünüzde AJAX ile hızlı aramalar yapmanızı sağlayan bir eklenti. Yaziyi gonderen emrearas in: Ajax, Internet | [...]
hi
i’m so pleased that i saw this site. that post was so cool. thanks again i signed up to this blog.
are you going to post similar posts?
The excellent message))
Sign: zdbrw Hello!!! qbrax and 2840erzfdbeufs and 5250 : Sorry, what did you mean?? A??
Sick and tired of getting low amounts of useless visitors to your website? Well i want to inform you of a new underground tactic that produces me personally $900 on a daily basis on 100% AUTOPILOT. I really could be here all day and going into detail but why dont you merely check their site out? There is really a excellent video that explains everything. So if your serious about making hassle-free cash this is the website for you. Auto Traffic Avalanche
I just read through your post and I enjoyed it. I am wondering if you’re intending to publish additional articles to go in conjunction with this blog?
If you would certainly become familiar with a major belief that causes a woman to use a small number of excess weight, abdominal fat, to one currently being significantly obese, unwanted fat, chubby
how to lose weight fast
how to lose weight weight
lose weight fast
the diet solution program
the truth about abs
Nice site, thank you. I really love it!
, that logic is flawed
Davidoff Colorado Claro Double R
бесплатное кино скачать без смс фильмы скачать бесплатно бесплатная регистрация
Cora ftw?!?
acupressure courses
I am very thankful to this topic because it really gives great information -”;
I am really thankful to this topic because it really gives up to date information .-,
Learn about the prescription medication Neurontin (Gabapentin), drug uses, … in the treatment of partial seizures with and without secondary generalization in ….. Epilepsy and many other illnesses for which AEDs are prescribed are … – Cached – Similar
Topiramate For Migraine
Phentermine And Topiramate
16 Mar 2010 … Prescription Medication Aided with Natural Supplements … a way that the number of neurons (the main source of epileptic seizure) firing at …
In the eyes of a health insurer, it is unpredictable to an epileptic … have been diagnosed more than 10 years and is controlled by prescribed medication. … Some patients can become seizure free without medication indication of the …
Compare prices and buy Lamictal, Lamitor and Lamotrigine with no prescription needed. Lamotrigine is used to control partial epileptic seizures in adults.
- 2008 – Related articles17 Apr 2008 … Thus, with the likely diagnosis of seizure, CT scan and EEG were done derealization and … experienced a brief panic condition and the medication was replaced by crabamazepine … Prescription Drug Information Tegretol. …www.annals-general-psychiatry.com/content/7/S1/S119 – Cached – Similar
Topiramate Price
1 post - 1 author - Last post: 27 Jan
LAMICTAL is a prescription medication for epilepsy and for maintenance … with other medicines, to treat certain types of seizures (partial seizures, …
Topiramate
Topiramate And Weight Loss
11 posts - 6 authors
Topiramate Addiction
Topiramate Alcohol
Topiramate Weight Loss Dosage
Грамотный пост
Hi there nice work on the search bar, is it possible to integrate it with CMS PODS… does any one have ideas on this approach?
Looking forward to your feedback
Thanks
This blog post continues to be retweeted on twitter by means of me personally coupled with with any luck , other individuals!
Hi there! This is my first visit to your blog! We are a team of volunteers and starting a new initiative in a community in the same niche. Your blog provided us useful information to work on. You have done a outstanding job!
I’m not sure why but this weblog is loading extremely slow for me. Is anyone else having this problem or is it a issue on my end? I’ll check back later on and see if the problem still exists.
you love this? designer bags on sale for more detail wholesale authentic designer handbags for more
[...] as well as retrieving new passwords. If already logged in a logout link is displayed.”"rnBetter-Than-Live AJAX WordPress Search v2rn”Just a little less than a year ago I launched Better-Than-Live AJAX WordPress Search. I [...]
get cheap knock off ugg boots to take huge discount for more detail
iYl ugg boot sale nMb http://kanah.org
North america Goose lower jacket with a solid comfortable, possibly design transformed, advertising actions press grew to become Canada Moncler
[url=http://manualfocus.net/index.php?p=blogs/viewstory/188915 ]http://www.swty.net/bbs8/boke.asp?dstgrfr.showtopic.162773.html [/url]
The women’s coat is hooded and produced of Polartec 300 fleece for biggest solace and warmth.
[url=http://buddyarea.com/index.php?p=events/viewstory/89679 ]http://rapichat.com/sdrer/msg:created [/url]
As well as jeans will vary, corduroy skinny jeans with some other distinct shade, Khaki, grey lighting gray, darkish almond.
[url=http://thefans.com.nu/index.php?p=blogs/viewstory/159415 ]http://thefans.com.nu/index.php?p=blogs/viewstory/159433 [/url]
“Favorite simple product or service? “Made associated with suit cloth jacket, this kind of yr my personal preferred design and style.
[url=http://sma1pariaman.com/blog_entry.php?user=fhtyh&blogentry_id=46141 ]http://sma1pariaman.com/blog_entry.php?user=fhtyh&blogentry_id=46140 [/url]
Hat, the length may customize the amount of suit.
[url=http://newpaces.com/members/profile/3873/blog-view/-canada-canada-goose-outlet-_14211.html ]http://rejeje.socialgo.com/members/profile/1235/blog-view/-canada-canada-goose-outlet-_19262.html [/url]
Of course, as well, adhere to the style style of North america Goose, is also your own instrument within the roadways of New You are able to fashion bloom.
[url=http://betweendrinks.com/xiaoxiao925/blog/88304/ ]http://rejeje.socialgo.com/members/profile/1235/blog-view/canada-goose-jakker-as-the-climate-turn-out-to-be-more-comfortable-in-recent-years—along-with-the-instances-of-entertainment-s_19263.html [/url]
Gone would be the days the place these great aged jackets bypass the vogue planet in silence.
[url=http://www.kite-skills.com/index.php?option=com_blog&view=comments&pid=9627&Itemid=66 ]http://betweendrinks.com/xiaoxiao925/blog/88309/ [/url]
The fall of This year, snidel strong landing inside Hangzhou, by the comparability of the craze from the Sino-Japanese ladies really like go with design of decryption have been obvious, why don’t we within this romantic season, with all the snidel collectively to create a nice clothes style.
[url=http://www.kite-skills.com/index.php?option=com_blog&view=comments&pid=9628&Itemid=66 ]http://www.kite-skills.com/index.php?option=com_blog&view=comments&pid=9629&Itemid=66 [/url]
Now, I do think to make sure worth it.
[url=http://mujerdehoy.socialgo.com/members/profile/2608/blog-view/-canada-canada-goose-outlet-_37262.html ]http://motomodders.socialgo.com/members/profile/958/blog-view/-canada-canada-goose-outlet-_6567.html [/url]
Maison Martin Margiela men’s 14 collection originates from the particular model, like beneath the preset profile, be a part of style sensation official Martin Margiela’s Mace.
[url=http://www.inscienet.org/index.php?p=blogs/viewstory/234836 ]http://www.magentofriends.com/index.php?p=blogs/viewstory/210834 [/url]
North Encounter,the outdoor brand identify was founded in 1968 inside of San Francisco,California.
It’s hard to find knowledgeable people on this topic, but you sound like you know what you’re talking about! Thanks
Dear members
Just joined and thought Id wish you all a Happy New Year!
[url=http://www.eftpos-terminal.com.au]EFTPOS Terminal[/url]
Новая [url=http://aldoska.ru]бесплатная доска объявлений[/url]. Разместите своё объявление о продаже, покупке или с описанием своего майта – его увидят милионы пользователей интернета.
Компания ЗАО «Вега-Тепло» – является официальным дистрибьютор в РФ газовых котлов Rinnai (Япония), газовых генераторов Green Power (Китай), газовых генераторов Panda Mashinery (Китай), гибких стальных
гофрированных труб Dong-A и A-Flex для газа и водопроводов (Ю.Корея). Компания ЗАО «Вега-Тепло» в соответствие с сертификатами от производителей имеет право создавать собственную дилерскую сеть
на территории РФ, сервисные центры по техническому обслуживанию газового оборудования и техническому обучению дилеров. Подробная информация на нашем сайте http://rinnaigas.ru и по телефону +7(495)432-50-00